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 it possible to get the URL "example1.com" which is calling this URL (example2.com)?
Using file_get_contents('php://input'), I can get the input of example1.com but how can I get the URL which is the "example1.com" here in example2.com?