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
29
30
31
32
33
34
35
36
|
<?php include 'config.php';
// Check if the user is logged in
if ((!isSet($_SESSION['loginname'])) || ($loggin <> '1')) { header("Location: login.php"); exit; } ?> <html> <head> <title>Content Management System (CMS) - Powered by One Solution Limited</title>
<meta http-equiv="x-ua-compatible" content="ie=7"/> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="description" content="One Solution Limited"> <meta name="keywords" content="One Solution Limited"> <meta name="ROBOTS" content="ALL"> <meta name="distribution" content="香港,Hong Kong"> <meta name="copyright" content="One Solution Limited"> <meta name="rating" content="general"> <meta name="WEBCRAWLERS" content="ALL"> <meta name="SPIDERS" content="ALL"> <meta name="REVISIT-AFTER" content="7 DAYS"> <META NAME="Generator" CONTENT="One Solution CMS"> <META NAME="author" CONTENT="One Solution Limited">
</head> <frameset rows="*,0" cols="*" frameborder="no" border="0" framespacing="0" scrolling="yes" > <frame src="mainpage.php" scrolling="yes" noresize="noresize" id="topFrame" /> <frame src="UntitledFrame-1"></frameset><noframes></noframes>
</html>
|