Re: [PHP] POST_with_PHP_--_please_help_!

2003-02-04 Thread Krzysztof Dziekiewicz
That's right, but with curl it's not a true redirection: you just print the content of the target page, you don't redirect to the page. What I need is automated forms, that send the same data as forms but without user interaction. I can't use javascript to automatically send a form. Maybe

Re: [PHP] POST_with_PHP_--_please_help_!

2003-02-03 Thread olinux
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 to automatically send POST data to the site, without a form. Basically I need header(Location: ...) - that is

Re: [PHP] POST_with_PHP_--_please_help_!

2003-02-03 Thread arthur.chereau
That's right, but with curl it's not a true redirection: you just print the content of the target page, you don't redirect to the page. What I need is automated forms, that send the same data as forms but without user interaction. I can't use javascript to automatically send a form.

Re: [PHP] POST_with_PHP_--_please_help_!

2003-02-03 Thread Marek Kilimajer
no way without javascript arthur.chereau wrote: That's right, but with curl it's not a true redirection: you just print the content of the target page, you don't redirect to the page. What I need is automated forms, that send the same data as forms but without user interaction. I can't use