Your IP : 10.1.73.149


Current Path : /home/bolconlineco/public_html/tutor/
Upload File :
Current File : /home/bolconlineco/public_html/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(); 
 }
?>