/var/www/(Del)yunfung.com.hk/admin/main.php


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
<?
//require 'db_connect.php';
require 'check_login.php';
if (
$logged_in <> 1) {
    
header('Location: login.php');
    return;
}
else
{
?>
<html>
<head>
<link rel="stylesheet" href="main.css" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=big5" />
<title>Admin Page</title>
</head>

<frameset cols="150,*" frameborder="no" border="0" framespacing="0">
  <frame src="menu.php" name="menu" scrolling="No" noresize="noresize" id="menuFrame" />
  <frame src="mainpage.php" name="main" id="mainFrame" />
</frameset>
<noframes><body>
</body>
</noframes></html>
<?
}
?>