[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

[PHP] Re:[PHP] POST without a form

2003-01-30 Thread Daniel Leighton
I think what you want to use is CURL. I don't know if that's the canonical way to do it, but it is certainly a way. You can get more info here: http://www.php.net/manual/en/ref.curl.php At 1:28 AM +0100 on 1/31/03, arthur.chereau wrote: Hi, A PHP page (main.php) loads another page