Hi,
I cannot get setcookie to work with IE8. My script works fine in IE7, firefow and Safari, but it doesn't seem to work in IE8 running on Windows7 and I'm getting desperate!
I'm using a very short small test script now:
<?php
$value = 'content';
setcookie("CookieTest", $value, 0);
?>
With Firefox this works fine, the cookie is being created in my temp file folder without any problem. When I run this script in IE8, no cookie is being created. I have even already put Privacy to the lowest level so that all cookies should be accepted. But even then, no luck.
Anyone any idea what could be wrong here?
Thanks, Geert