Dear all,
I am using php 5.0.3 and HTTPS protocol. In IE6,
when Back button is clicked, Page cannot be displayed error occurs. ( When I refresh the page, the page is displayed. )
when Forward button is clicked,
Warning: Page has Expired The page you requested was created using information you submitted in a form. This page is no longer available. As a security precaution, Internet Explorer does not automatically resubmit your information for you.
To resubmit your information and view this Web page, click the Refresh button.
( When I refresh the page, Security Alert message box appears
When I press OK, the page is displayed.
Here is
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
setcookie(session_name(),"", time()+3600,'/',false,1); / 6060 expire in 1 hour */
session_cache_limiter('must-revalidate'); // I use it to be sure
session_start();
$_SESSION=array()
If anybody has any experience with it, please help me. Thanks in advance!
regards,
Mitchell