hello for all
I have two cookies variable
1) user name var.
2) password var.
i created them succefuly but in log out success in opera and firefx browsers but failed in IE, this my logout code:
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
header("Cache-Control: post-check=0, pre-check=0", false); // HTTP/1.1
header("Pragma: no-cache"); // HTTP/1.0
setcookie("user_name","",time()-3600);
setcookie("password","",mktime(12,0,0,1, 1, 1970));
header("Refresh: 5; url=show.php");
hope can help
Thanks and Regards