IE 6 is not displaying the cookie set in the code below but mozilla firefox is just working fine. I have changed the settings to allow all cookies in the internet options for IE6 but still its not working. When i view the files to view the cookie in the option i can see the page...what could be the problem with my IE? on other machines its opening without any problems. Its just my IE...
<?php
// echo "test ftp";
//phpinfo();
setcookie("testCookie","Testing again", time()+3600);
$tmpdata = $_COOKIE["testCookie"];
echo "Your data: $tmpdata";
?>