projects
/
ccan
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
committing changes for web pages after update of create_tar_ball
[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
?>