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

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

2004-01-26 Thread Vincent DUPONT
Hi all, I would like to simulate sending a form in POST to a specified URL through PHP. I knwo how to do this from a HTML form : http://url.com/query";> blablabla I would just like to simulate this because I have some processes that will change the values of the form before sending it to the