I have pages that, for reasons I will never understand because of my off-the-scale hatred for Mozilla, continue to cache in spite of my clearing cache on the browser, using various header() commands to force a server-side cache clear, everything I can think of, unless I physically close and reopen the browser.
This cracked behavior only occurs when PHP-derived pages display HTML form element dropdowns. The dropdowns will NOT reflect any change you made to your code that should show a change, in spite of header() commands and everything else.
Has anyone ever found a way to combat this disgusting problem with Mozilla? I am just not figuring this out and any online resource as to how to force Mozilla to constantly clear cache is totally appreciated.
Thanx
Phil
// HEADER COMMANDS TAKEN FROM [url]http://us4.php.net/manual/en/function.header.php[/url]
// Date in the past
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
// always modified
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
// HTTP/1.1
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
// HTTP/1.0
header("Pragma: no-cache");