File "logout.php"
Full path: /home/dsvchile/public_html/equote/logout.php
File
size: 287 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?
include("parse_vars.php");
include("config.php");
$Tipo="Close Session";
$Detalle="User Close Session";
/* InsertLog($Tipo,$Detalle); */
setcookie("Admin", "", time() - (60 * 60 * 24 * 365));
setcookie("LogOn", "", time() - (60 * 60 * 24 * 365));
header("Location: index.php");
?>