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
|
<? //require 'db_connect.php'; require 'check_login.php'; if ($logged_in <> 1) { header('Location: login.php?msg=Incorrect password, please try again'); return; } else { ?> <html> <head> <link rel="stylesheet" href="main.css" type="text/css"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Content Management System (CMS) - Powered by One Solution Limited</title> </head>
<frameset rows="*" cols="*" frameborder="no" border="0" framespacing="0" scrolling="yes" > <frame src="mainpage.php" scrolling="yes" noresize="noresize" id="topFrame" /> </frameset>
</html> <? } ?>
|