I have a XML data string that I need to perform a server side post with to another URL on a separate server for parsing. The user cannot be redirected. How can this be done? Thanks.
Hi,
If you have sockets enabled you could open one to the remote host, manualy build an HTTP POST request and send it through the socket.
This would not redirect your user.
Mark.
look up fopen in the php manual. It can be used to open an http request and send data to a script elsewhere, and the other script can return data to it.