[go: up one dir, main page]

Menu

[r99]: / tags / 1.3 / logout.php  Maximize  Restore  History

Download this file

23 lines (21 with data), 577 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
# $Id: logout.php 86 2010-10-05 12:19:27Z rediculum $
session_start();
# Includes
####################################################################
include("includes/db.inc.php");
include("includes/layout.inc.php");
include("includes/functions.inc.php");
# Main
#####################################################################
session_destroy();
?>
<html>
<head><?php echo "$headtitle $head";?>
<meta http-equiv="refresh" content="1;url=index.php">
</head>
<br><br><center>Logout ..
<p><img src="images/loader.gif">
</center>
<?php mysql_close($conn);?>
</html>