How to disable back button in browser using javascript or any script
- by user225269
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();
?>
And I have this at the beginning of the user page:
<?
session_start();
if(!session_is_registered(myusername)){
header("location:login.php");
}
?>
I don't know why the userpage can still be access after the user has logged out.
So I'm thinking of disabling the back button when the user has logged out.
Please help.