| Current Path : /home/bolconlineco/www/aaaaaa/tutor/ |
| Current File : /home/bolconlineco/www/aaaaaa/tutor/logout.php |
<?php
session_start();
if(isset($_SESSION['tutor']))
{
unset($_SESSION['tutor']);
unset($_SESSION['tutorrole']);
header('location:../index.php');
exit();
}
else
{
header("location:../index.php");
exit();
}
?>