rastkocvetkovic
Programmer
I'm using Windows XP with Internet Explorer 6.0 and Apache server running PHP. Now, on any other platform and browser - it works fine - even on my machine - Netscape works perfectly.
Now, with IE6.0, I have set on "Accept All Cookies" - and even that doesn't help. I've already tried this P3P garbage which I found on one help page, but even that doesn't help. Here's the code:
// we send the cookie only with session_id (for a period of 3 hours)
header('P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"'); //garbage for IE6.0
setcookie ("cookie_session_id" , "fa352456316ab", time() + 10800, "/"
I tried to retrieve the cookie with both ways:
echo "Method 1 : " . $cookie_session_id . "<br>";
echo "Method 2 : " . $_COOKIE["cookie_session_id"];
, but none of this methods have worked.
Thanks in advance for help!
Now, with IE6.0, I have set on "Accept All Cookies" - and even that doesn't help. I've already tried this P3P garbage which I found on one help page, but even that doesn't help. Here's the code:
// we send the cookie only with session_id (for a period of 3 hours)
header('P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"'); //garbage for IE6.0
setcookie ("cookie_session_id" , "fa352456316ab", time() + 10800, "/"
I tried to retrieve the cookie with both ways:
echo "Method 1 : " . $cookie_session_id . "<br>";
echo "Method 2 : " . $_COOKIE["cookie_session_id"];
, but none of this methods have worked.
Thanks in advance for help!