Subversion Repositories svnkaklik

Compare Revisions

Ignore whitespace Rev 5 → Rev 6

/web/test/chat/shoutit/ShoutBoxFiles/logout.php
0,0 → 1,14
<?php
session_start();
session_destroy();
$_SESSION = array();
#That cleans out the session variables and ends the session
$title = 'Logged Out';
echo '<html><head><title>';
echo $title;
echo '</title>';
echo '</head><body>';
echo '<br />Thank you, you have been logged out. Please come back later.';
echo '<br /><a href="../ShoutLogin.php">Click Here</a> to log back in.';
echo '</body></html>';
?>