Re: [PHP] POST Parameters

2003-09-24 Thread Chris Shiflett
--- Stephan Becker <[EMAIL PROTECTED]> wrote: > With perl there is a CPAN modul that could act as a HTTPclient to > handle such HTTP issues properly. With PHP, there is PEAR: http://pear.php.net/package/HTTP http://pear.php.net/package/HTTP_Client http://pear.php.net/package/HTTP_Request Or, you

Re: [PHP] POST Parameters

2003-09-24 Thread Stephan Becker
> As for redirecting, you cannot force a client to send a POST request to another > URL (thankfully). So, you either need to send the POST request yourself (and > send the output to the client), or you need to think of another solution (such > as using URL variables for everything). OK, that soun

Re: [PHP] POST Parameters

2003-09-22 Thread Chris Shiflett
--- Stephan Becker <[EMAIL PROTECTED]> wrote: > A special PHP CGI Script, let´s say 'phpscript.cgi' might be called > with GET or POST Parameters. Though I will never now which kind and > how many of such parameters will be passed to that script, I have to > do some work of mine with them and after

Re: [PHP] POST Parameters

2003-09-22 Thread Brent Baisley
All POST value are stored in the $_POST[] array, all GET values are stored in the $_GET[] array. Both POST and GET values are stored in the $_REQUEST[] array. So if you don't know whether it will be a post or a get, grab the data by accessing the $_REQUEST[] array. On Monday, September 22, 2003

[PHP] POST Parameters

2003-09-22 Thread Stephan Becker
Maybe my problem ist simple to solve, but I can´t. Here it is: A special PHP CGI Script, let´s say 'phpscript.cgi' might be called with GET or POST Parameters. Though I will never now which kind and how many of such parameters will be passed to that script, I have to do some work of mine with them