|
Posted by MS on 05/16/06 17:54
I am a newbie to PHP so hopefully this is a easy question.
I am pulling data off of one server, which holds our data base and
posts it to my PHP page.
I have the following code on my php page:
$pfirstname = $_POST['NFIRST0'];
$plastname = $_POST['NLAST0'];
$paddress = $_POST['NSTREET0'];
$pxaddress = $_POST['NEXTRAADDRESS0']; etc....
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?
Navigation:
[Reply to this message]
|