문제

I want to expire my previous page when end user clicks on LogOut or Back button of the browser.

도움이 되었습니까?

해결책

If you include this at the top of all of your pages, it will require the client to always reload the content, making the back-button requesting a new copy of the page.

<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
?>

http://php.net/manual/en/function.header.php

다른 팁

You could have some issues with the browser back button, because when clicked, some browsers simply don't reload the page from the server and displays the previous state of the page from the cache.

Destroy the session key with session_destroy();

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top