Please check the following scenario:
Cookie in temporary internet files : OK! from www.A.com
tcookie.php from site www.A.com
// www.A.com
echo $_COOKIE['user'].":".time();
index.php from site www.B.com
//www.B.com
$ch = file("http://www.A.com/tcookie.php");
// ERROR below: does not display $_COOKIE string
echo $ch[0];
Any idea to execute index.php and display the cookie?
avoid: include() and require() command