1
|
1 |
<? |
|
2 |
|
|
3 |
// +--------------------------------------------------------------------+ |
|
4 |
// | PowerAdmin | |
|
5 |
// +--------------------------------------------------------------------+ |
|
6 |
// | Copyright (c) 1997-2002 The PowerAdmin Team | |
|
7 |
// +--------------------------------------------------------------------+ |
|
8 |
// | This source file is subject to the license carried by the overal | |
|
9 |
// | program PowerAdmin as found on http://poweradmin.sf.net | |
|
10 |
// | The PowerAdmin program falls under the QPL License: | |
|
11 |
// | http://www.trolltech.com/developer/licensing/qpl.html | |
|
12 |
// +--------------------------------------------------------------------+ |
|
13 |
// | Authors: Roeland Nieuwenhuis <trancer <AT> trancer <DOT> nl> | |
|
14 |
// | Sjeemz <sjeemz <AT> sjeemz <DOT> nl> | |
|
15 |
// +--------------------------------------------------------------------+ |
|
16 |
|
|
17 |
// Filename: footer.inc.php |
|
18 |
// Startdate: beginning. |
|
19 |
// Description: simple page footer |
|
20 |
// Closes the database connection. |
|
21 |
// |
|
22 |
// $Id: footer.inc.php,v 1.12 2003/05/14 22:49:56 azurazu Exp $ |
|
23 |
// |
|
24 |
|
|
25 |
|
|
26 |
global $db; |
|
27 |
if(is_object($db)) |
|
28 |
{ |
|
29 |
$db->disconnect(); |
|
30 |
} |
|
31 |
|
|
32 |
?> |
|
33 |
<BR><BR> |
|
34 |
<FONT CLASS="footer">[ <A HREF="index.php?logout">logout</A> ] <B>PowerAdmin v1.2.7</B> :: Copyright © |
|
35 |
<?= date("Y") ?> The PowerAdmin Team :: <a href="http://poweradmin.org" target="_blank">http://poweradmin.org</a> |
|
36 |
</FONT> |
|
37 |
</BODY> |
|
38 |
</HTML> |
|
39 |
|