summaryrefslogtreecommitdiffstats
path: root/include/logout.php
blob: d74f0919e1929f56f413e6e71f34965fff8c3622 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/* make sure that we are not called from outside the scripts, 
 * use a variable defined in config.php to check this
 */
if(!isset($HOST))
  exit;

/* distroy the session */
session_unset();
session_destroy();
$_SESSION = array();
    
echo "<div class=\"message\"><span class=\"bigger\">You are now logged out!</span><br />\n".
"(<a href=\"$INDEX\">This will take you back to the home-page</a>)</div>";
?>