Tagged Questions
0
votes
1answer
69 views
How to know the url that is calling the destination url using curl in the destination url?
Okay, I have this setup:
//in example1.com, I am setting cURL <br />
$c = curl_init(); <br />
curl_setopt($c, CURLOPT_URL, 'http://example2.com');
//now in example2.com <br />
Is ...