|
Posted by Geoff Muldoon on 05/17/06 02:28
mscurto@gmail.com says...
> For the $paddress variable, it is skipping anything after a space. For
> example, if the address is 1234 Main, the only data that pulls in to my
> php page would be 1234. It would skip the Main. This is also occuring
> with other variables as well.
>
> Anyone have any ideas to why this is happening?
Yes, It's a HTML issue not a PHP one. You need to double-quote any
strings with spaces in your inputs.
Example:
echo "<input type=hidden name=paddress value=$paddress>";
should be changed to
echo "<input type=hidden name=paddress value=/"$paddress/">";
or
echo '<input type=hidden name=paddress value="$paddress">';
GM
Navigation:
[Reply to this message]
|