--- 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
> 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
--- 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
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
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
5 matches
Mail list logo