Re: [PHP] POST_with_PHP_--_please_help_!

2003-02-03 Thread arthur.chereau
t to automatically send a form. > You can do posts with curl > > http://www.php.net/manual/en/ref.curl.php > > olinux > > > --- "arthur.chereau" <[EMAIL PROTECTED]> wrote: > > I need to redirect the browser to an external > > website and

[PHP] POST with PHP -- please help !

2003-02-03 Thread arthur.chereau
I need to redirect the browser to an external website and to automatically send POST data to the site, without a form. Basically I need header("Location: ...") - that is true redirection - with POST. How can I do this with PHP ? -- Faites un vo

[PHP] POST without a form

2003-01-30 Thread arthur.chereau
Hi, A PHP page (main.php) loads another page (doit.php) via a form. doit.php gets the data via $_POST. Now, from a third page (other.php), I need to load doit.php with other data, but automatically, without a form. How can I redirect to doit.php and send POST data at the same time ? (as