Page 1 of 1

Browser page caching

Posted: Mon Oct 31, 2005 7:38 am
by mauriciosr
Morning guys, this is my first post and I start making questions :oops: I'm new ni PHP so I don't know if is a hard or easy but here is:

I've this code to allways show a refresh page version when a user click the back button:

Code: Select all

header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
	header('Cache-Control: no-store, no-cache, must-revalidate');
	header('Cache-Control: post-check=0, pre-check=0', FALSE);
	header('Pragma: no-cache');[
The code is working ok with Internet Explorer, but in Firefox dosen't work. Any Idea on how to solve this problem?