Hi to all!
I'm trying to put the value of a variable in an HTML form with PHP code. The variable is a string containing %20 instead of a SPACE.
For example
My url is:
www.myweb.com/myfile.php/myvar=a%20b%20c
I use this code to put the var in the form:
<? echo "<input type=\"text\" name=\"var\" size=\"10\" value=\"".$myvar."\">";?>
But in my form I see only:
a
instead of
a b c
Can you help me, I'm quite desperate :-(
Thanks _
Dan