ZnoteAAC/logout.php
2013-08-28 23:44:46 +02:00

8 lines
163 B
PHP

<?php
require_once 'engine/init.php'; include 'layout/overall/header.php';
if (isset($_SESSION)) {
session_destroy();
header('Location: index.php');
}
?>