Files
pannello/core/logout.php
2016-05-16 15:50:57 +02:00

11 lines
179 B
PHP
Executable File

<?php
include_once ("config.php");
login();
logga ("Uscita");
session_name("SWP");
session_start();
$_SESSION['auth'] = 0;
session_destroy();
header('Location: ../index.php');
?>