Im using wamp server for my php scripts. And Im having difficulties on the logout code. Every time I click on the logout link and then click on the back button on web browser it still shows the page which can only be access by the user who is logged in. I have this code at the beginning of the index.php which is called by the log out link to destroy the session:
<?php
session_start();
session_destroy();
?>
Ve ben kullanıcı sayfanın başında bu var:
<?
session_start();
if(!session_is_registered(myusername)){
header("location:login.php");
}
?>
Kullanıcının oturumu sonra userpage hala erişim olabilir neden bilmiyorum.
As an another note will disabling the back-button for this can solve the problem Please help.