I try atmost but I failed to destroy session within in 1 minute. I am using PHP destroy code which is given below but it is not working.
<?php
session_start();
$_SESSION['start'] = "start session";
if(isset($_POST['destroy'])){
session_cache_expire(1);
}
?>