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