also found this ... on http://us2.php.net/manual/
<?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");
?>
so if you do this hopefully the browser may not cache the page, which would allow the session to check when the click the back button
Main Topics
Browse All Topics





by: ThaSmartUnoPosted on 2004-07-25 at 20:19:49ID: 11634553
http://www.experts-exchang e.com/Web/ Web_Langua ges/PHP/ Q_ 21069875.h tml#116279 39
you could try that ... but again that is javascript
I would recommend storing cookies or session variables to say which page you are on or should be on. So if they click back, they can view the information, but once they click anything it will goto that page and say that you are supposed to be here ... click here, or something to that nature