Hi,

I am trying to use curlop_post to post $_POST to another server that does not have a public IP. I have the form pass all its data to an intermediary file that contains this code:

Code:
$ch = curl_init("http://oldserver.mycompany.com/somepage.php");
curl_setopt($ch, CURLOPT_POST); //use the POST method
curl_setopt($ch, CURLOPT_POSTFIELDS, $_POST); //take the $_POST array
and use those as the
...