View file public_html/vipadz/logout.php

File size: 502B
<?php

/************************************

Script : Adnetwork
Website : http://facebook.com/pranto007

Script is created and provided by Pranto (http://facebook.com/pranto007)
**************************************/

include '../db.php';
include '../functions.php';

headtag("Logout - $SiteName");

//$_SESSION["admin_username"]="";
//$_SESSION["admin_pass"]="";
$hour = time() +(3600*12);
setcookie("admin_username", "", $hour);
setcookie("admin_pass", "", $hour);
 header('Location:login.php');
?>