View Single Post

  #5 (permalink)  
Old 05-17-2006
Geoff Muldoon
 
Posts: n/a
Default Re: Space Issue with my PHP page

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
Reply With Quote