]> git.ozlabs.org Git - ccan/blob - web/logout.php
Simplify dependencies by passing pointers over the pipe: avoid O(n^2) behaviour for...
[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 ?>