Viewing file: logout.php (1023 B) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?
include("../include/config.php");
include("include/function.php");
include("../include/interface.php");
include("../include/lib/libconfig.php");
include("../include/db/db_".$db_type.".inc.php");
$leave = leaveAdmin();
$conf = new config();
$conf->getConfig($hostname,$login ,$pass,$database, $table_global_config);
include("../include/lang/".$conf->language.".php");
html_header( translate("LOGOUT_TITLE") , "../phpmynewsletter.css");
echo "<div class='subsection2'>";
echo "<div class='subtitle'>".translate("LOGOUT_TITLE")."</div>";
echo "<div class='subcontent'>";
if($leave) echo "<div align=\"center\" class=\"success\">".translate("LOGOUT_DONE").".</div>";
else echo "<div align=\"center\" class=\"error\">".translate("LOGOUT_DONE")."</div>";
echo "</div>";
echo "</div> <br /> <br />";
echo "<br /><div align=\"center\"><img src=\"img/puce.gif\" border='0' alt='*' /> <a href=\"index.php\">".translate("LOGOUT_BACK")."</a>";
include("include/pagefooter.inc.php");
?>
|