1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php require("inc/configure.php"); ?> <?php require("inc/global.php");?>
<? require 'inc/checklogin.php'; //require 'inc/global.php';
if ($logged_in == 1) { } else { //echo 'Not logged in. <a href="login.php">Login</a>'; header('Location: login.php'); } ?> <html> <head> <link rel="stylesheet" href="main.css" type="text/css"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title><?=$systitle?></title> </head>
<frameset cols="200,*" frameborder="no" border="0" framespacing="0"> <frame src="menu.php" name="menu" noresize="noresize" id="menuFrame" /> <frame src="main.php" name="main" id="mainFrame" /> </frameset> <noframes><body> </body> </noframes></html>
|