Current File : /home/inlingua/www/sensoriumpsychologists.com/finalexam/logout.php
<?php
session_start();
if(!isset($_SESSION['final_exam'])){
	header("Location:index.php");
}
else if(isset($_SESSION['final_exam'])!=""){
	header("Location:index.php");
}
if(isset($_GET['logout'])){
	session_destroy();
	unset($_SESSION['final_exam']);
	header("Location:index.php");
}
?>