im using urlencode() to send a name with SPACES like "Michael Asdsf", and on the next page im printing it with urlencode() but im only gettin the "Michael" and not the "Asdsf",
here is part of the first and second page script.
--1st page--
<A HREF="create_privado.php3?destino=<? echo htmlspecialchars (urlencode($myrow[user])); ?>"><? echo htmlspecialchars($myrow[user]); ?></A>
--end--
--2nd page--
<?$destino=urldecode($destino); ?>
<td bgcolor="#99BEE3"><input type="Text" name="destino" value=<? echo "$destino"; ?>>
--end--
de second page its part of a Form, but dont worry about that.
Thanks...