I am using the following code to send a POST request using cURL. This is working perfectly. The only issue I have is that the location in the address bar does not update itself.
The webpage that sends this request is www.somedomain.com/merge.php, but after the post has been executed the address bar still shows www.somedomain.com/merge.php instead of www.somedomain.com/preview.php
I have tried using curl_setopt($c, CURLOPT_FOLLOWLOCATION, 1); with no luck.
$c = curl_init();
curl_setopt($c, CURLOPT_URL, 'www.somedomain.com/preview.php');
curl_setopt($c, CURLOPT_POST, true);
curl_setopt($c, CURLOPT_POSTFIELDS, 'landscape=true');
curl_exec ($c);
curl_close ($c);
Thank you