RE: [PHP-DB] How to forward a POSTed form to another server and catch the return for further processing

2004-08-15 Thread Peter Lovatt
hi this should do the trick Peter // this is the script to pass the post onto $server_to_post_to = 'http://www.test.com/somescript.php'; $url = parse_url($server_to_post_to); unset($request_data) ; //run through the data POSTed to this server and build a new POST request foreach

Re: [PHP-DB] How to forward a POSTed form to another server and catch the return for further processing

2004-08-14 Thread Robby Russell
On Sat, 2004-08-14 at 17:41, Yanglong Zhu wrote: How to forward a POSTed form to another server and catch the return for further processing. I think I did this before. But now I have completely forgot how that was done. The posted form data is processed on the other server, the results

Re: [PHP-DB] How to forward a POSTed form to another server and catch the return for further processing

2004-08-14 Thread John Holmes
Yanglong Zhu wrote: How to forward a POSTed form to another server and catch the return for further processing. I think I did this before. But now I have completely forgot how that was done. The posted form data is processed on the other server, the results should be returned or captured by the