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
With register_globals off you will be accessing the query string variable with, $_GET['add_event'] Or if you send through a POST request, $_POST['add_event'] You can simulate posting a form by opening an HTTP socket connection and sending the POST request manually. Search for the posttohost() fu

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