Is there a way to use cURL to redirect, but have the URL change to the new page?
I have the following, but the URL remains as that of the original page after the redirect:
Code:
<?php $url = "http://www.mydomain.com/test3.php"; $ch = curl_init(); // initialize curl handle curl_setopt($ch, CURLOPT_URL,$url); // set url to post to curl_setopt($ch, CURLOPT_FAILONERROR,
Leave a comment: