At 15:23 22-6-2003, you wrote:
Hello friends.
I am passing a variable of two word like "communications software" from one
form to the other. The variable passes as communications%20software . This
is okay for some purpose, but not for the hidden text field that I want. The
hidden text field gets the value "communications" only instead of
"communications software".
Is there a way to solve this?
putting quotes in the tag!
compare:
echo '<input type=hidden myvar='.$myvar.'>';
<input type=hidden myvar=communications software>
to
echo '<input type="hidden" myvar="'.$myvar.'">';
<input type="hidden" myvar="communications software">
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php