I have a logout.php which runs the following code. But it does not clear the session values completely. It redirects me to the homepage as it should. But when I click on back button then the previous page is displayed perfectly. I want to remove the cache values. How to do it?? Please help
<?php
session_start();
session_destroy();
header("location:home.php?msg=logout");
?>