Re: [PHP] Forming HTTP Header to POST

2002-10-08 Thread Kevin Stone
Doh! Sorry.. that would be $_GET['action'] as Chris specified. :P -Kevin - Original Message - From: "Kevin Stone" <[EMAIL PROTECTED]> To: "Paul Kaiser" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, October 08, 2002 10:33 A

Re: [PHP] Forming HTTP Header to POST

2002-10-08 Thread Kevin Stone
h for the posttohost() function on Google or this mailing list.. you'll find dozens of references. Although in your case I doubt you will be needing it. -Kevin - Original Message - From: "Paul Kaiser" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, Octobe

Re: [PHP] Forming HTTP Header to POST

2002-10-08 Thread Chris Hewitt
Paul Kaiser wrote: >Greetings, > >With register_globals off, I can no longer call specific functions form my >PHP script by linking text/graphic as such: > >http://www.mysite.com/mydb/myevts.php?action=add_event > Use $_GET['action'] on this get variable within your myevts.php script to obtain i

[PHP] Forming HTTP Header to POST

2002-10-08 Thread Paul Kaiser
Greetings, With register_globals off, I can no longer call specific functions form my PHP script by linking text/graphic as such: http://www.mysite.com/mydb/myevts.php?action=add_event What I need to do, of course, is get "add_event" sent in something like a POST command. I could make a page wi