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
|
<?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)</title> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head> <frameset rows="*,0" cols="*" frameborder="no" border="0" framespacing="0" scrolling="yes" > <frame src="mainpage.php" scrolling="yes" noresize="noresize" id="topFrame" />
</html>
|