]> git.ozlabs.org Git - ccan/blob - web/logout.php
Fix run-read_all and fix hang if they should fail.
[ccan] / web / logout.php
1 <?php
2 session_start();
3
4 include('logo.html');
5 include('menulist.html');
6
7 if($_SESSION['slogged'] != '')
8         echo "<br><div align=\"center\">Logged out Successfully...</div>";
9 else
10    echo "<br><div align=\"center\">Please login...</div>";
11
12 session_destroy();
13 ?>