Your IP : 10.1.73.149


Current Path : /home/bolconlineco/public_html/aaaaaa/admin/
Upload File :
Current File : /home/bolconlineco/public_html/aaaaaa/admin/logout.php

<?php
 session_start();
 
 if(isset($_SESSION['adminname']))
  {
	  
	  unset($_SESSION['adminname']);
	  unset($_SESSION['adminrole']);
	  header("location:../index.php");
	  exit();
  }else
  {
	 header("location:../index.php");
	 exit();  
  }

?>