Hello,
I have the header statements below (from the manual) to keep my page out off the cache but that doesn't work. I still have to hit the reload button after I re-enter the page. Does somebody hava a way to do this
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"); // HTTP/1.0
Ferry