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