| Current Path : /var/www/html/venkat/check3/ |
| Current File : /var/www/html/venkat/check3/logout.php |
<?php
session_start();
if(!isset($_SESSION['myusername'])){
header("location:login.html");
}
session_destroy();
header("location:login.html");
?>