Browser page caching
Posted: Mon Oct 31, 2005 7:38 am
Morning guys, this is my first post and I start making questions
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:
The code is working ok with Internet Explorer, but in Firefox dosen't work. Any Idea on how to solve this problem?
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');[