Re: [PHP] Newbie Question: DHTML client Http Post to PHP running under Apache/Win XP

2004-08-27 Thread John Holmes
From: <[EMAIL PROTECTED]>
Does the PHP script have to be already running to
communicate send a HTTP Post varibale to it (from a
DHTML client browser)?  Or can it initiate the HTTP
Post fron the client that activates the PHP script?
Just like any other web page, the POST request causes the web server to 
start the PHP script which receives the posted values. They are then 
available in the $_POST array. print_r($_POST) is your friend here (and 
mine!!).

Without seeing your code I'll have to resort to my crystal ball for the 
problems and right now it's leading me to believe your PHP script needs 
watering around line 45.

---John Holmes... 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Newbie Question: DHTML client Http Post to PHP running under Apache/Win XP

2004-08-27 Thread Bestman4unowwa
Does the PHP script have to be already running to communicate send a HTTP Post 
varibale to it (from a DHTML client browser)?  Or can it initiate the HTTP Post fron 
the client that activates the PHP script?

I know this must seems simple but I'm having troble receiving these varible from my 
client. When I find out the value of the vaiable I stick it into a MySQL table. Both 
client DHTML and server PHP work well alone but I can't seem to et the connection 
going using localhost.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php