Re: [PHP] send a POST to a URL from within PHP code

2004-01-26 Thread Chris Shiflett
--- Vincent DUPONT <[EMAIL PROTECTED]> wrote: > I would like to simulate sending a form in POST to a specified URL > through PHP. You can do this with a number of PEAR classes (search on http://pear.php.net/), the cURL extension (if you have it), or manually with PHP (if you have the allow_url_fop

Re: [PHP] send a POST to a URL from within PHP code

2004-01-26 Thread Matt Matijevich
With a GET, the fields would be included into the query strinbg, so this is quite easy. What happens in a POST? take a look at http://pear.php.net/package/HTTP_Request -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php