> ... but when the page expires, IE simply reloads it!
IE is probably loading it from its cache.
Try setting these:
<?
// Cache Control
header ("Expires: Mon, 6 Nov 2000 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
?>
This should force IE to reload it properly.
Jason
--
Jason Murray
[EMAIL PROTECTED]
Web Developer, Melbourne IT
"Work now, freak later!"
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]