i have 2 pages that send a string to another page.
one sends the string using a the form action.
the other uses php to build the string.
heres what they look like
(using form)
course=Windows+Server+2003+Upgrade+%28covers+courses+%232209+and+%232210%29
(using php - doesn't work)
course=Windows%20Server%202003%20Upgrade%20(covers%20courses%20#2209%20and%202210)
the second method sends the '#' symbol instead of %23. how do i send the '#' as a %23??
heres how the second string is built using php:
print "<a href='step3.php?course=$course_name' target='_self' class='link'>Register for this course now!</a>";
// $course_name = "Windows Server 2003 Upgrade (covers courses #2209 and #2210)"