I need to have a web browser submit a bunch of data to a script on another server without the web browser relocating to that script, usint the GET method.
I have tried curl, which seems to work for POST methods.
Basically, a user is at the site, submits a form. I need the user to stay on the site, but have the data sent to a remote server with the GET method.
I cannot open up a separate window as it will not close back down since the script I'm sending data to doesn't redirect you.
??
Thanks.