1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php header("Content-Type:text/html;charset=BIG5"); ?> <?php require("checkuser.php"); ?> <? if ($logged_in == 1) { } else { //echo 'Not logged in. <a href="login.php">Login</a>'; header('Location: logon.php'); } ?> <html> <head> <link rel="stylesheet" href="main.css" type="text/css"> <meta http-equiv="Content-Type" content="text/html; charset=big5" /> <title>One Solution Limited - Support</title> </head>
<frameset rows="80,*" frameborder="no" border="0" framespacing="0"> <frame src="menu.php" name="menu" scrolling="No" noresize="noresize" id="menuFrame" /> <frame src="main.php" name="main" id="mainFrame" /> </frameset> <noframes><body> </body> </noframes></html>
|