echo '
oops ;-)
'; exit;
session_start();
include_once '../lib/cdb.php';
connect_db();
include_once '../lib/adm.init.php';
include_once '../lib/adm.post.php';
include_once '../lib/adm.forms.php';
$title = generateTitle($_SESSION['LOGIN']['auth']);
if (isset($_COOKIE['isLogin'])) {
//authenticateL($_COOKIE['username'], $_COOKIE['password']);
// handle static pages
switch ($_GET['n']) {
case 50:
//$_SESSION['OPTIONS']['use_start_page'] = true;
//header("location: http://admin.frontliner.nl");
//exit;
default:
// none
}
$mobile = checkMobilePage();
if (!$mobile) {
include_once 'start.php';
exit;
}
}
?>
showpage($_SESSION['LOGIN']['auth']);
?>