Hi all,
I have a page that is REQUIRED to have a forced refresh on EVERY LOAD to display a new random code so the form can be submitted okay.
I already have this:
But does not work. Is there javascript that can do this? It has to refresh all of the images, especially the one with the random code.
Thanks,
-Matt
UPDATE: I just added a javascript that reloads the page on load but it still does not work
UPDATE: Nevermind! Got it :p Works now... that's odd...
I have a page that is REQUIRED to have a forced refresh on EVERY LOAD to display a new random code so the form can be submitted okay.
I already have this:
PHP:
// 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");
But does not work. Is there javascript that can do this? It has to refresh all of the images, especially the one with the random code.
Thanks,
-Matt
UPDATE: I just added a javascript that reloads the page on load but it still does not work
UPDATE: Nevermind! Got it :p Works now... that's odd...







