Subversion Repositories svnkaklik

Rev

Go to most recent revision | Details | Last modification | View Log

Rev Author Line No. Line
6 kaklik 1
<?php
2
session_start();
3
session_destroy();
4
$_SESSION = array();
5
#That cleans out the session variables and ends the session
6
$title = 'Logged Out';
7
echo '<html><head><title>';
8
echo $title;
9
echo '</title>';
10
echo '</head><body>';
11
echo '<br />Thank you, you have been logged out. Please come back later.';
12
echo '<br /><a href="../ShoutLogin.php">Click Here</a> to log back in.';
13
echo '</body></html>';
14
?>