I need a page not to be cached, I use te following headers to accomplish this, but appearantly IE doesn't support them, the page is definitely cached, in NS it works, does someone knows another way to do this?
Thanx in advance,
Bruno
<?
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-cache, must-revalidate"); // HTTP/1.1
header ("Pragma: no-cache");
?>