File "logout.php"
Full Path: /home/refref/public_html/tag/referate/logout.php
File size: 135 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
session_start();
unset($_SESSION['user']);
unset($_SESSION['timeout']);
session_destroy();
header("location:index.php");
?>