This repository has been archived by the owner on Sep 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage.php
59 lines (49 loc) · 1.52 KB
/
manage.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
include_once("./include/includes.php");
include_once("./include/manage_funcs.php");
DB_CONNECT($con);
SET_COOKIES($selected_page,$showdetails,$showdetails_cat1,$timezone,$userID,$con);
if ( VERIFY_USER($con) )
{
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="author" content="<? echo AUTHOR ?>" />
<meta name="description" content="<? echo DESCRIPTION ?>" />
<meta name="keywords" content="<? echo KEYWORDS ?>" />
<title><? echo SITE_NAME($selected_page,$con) ?></title>
<link rel="icon" href="images/bomb.png" />
<link type="text/css" rel="stylesheet" href="<? echo MAIN_CSS_FILE ?>" />
<script type="text/javascript" src="<? echo MAIN_JS_FILE ?>"></script>
</head>
<body>
<div id="page" class="page">
<div id="header" class="header">
<div id="selectsite" class="selectsite">
<?
UPDATE_DB_OPTIONS($selected_page,$con);
SELECTSITE($selected_page,'',$con);
?>
</div>
<div id="title" class="title">
<h1>Manage</h1>
</div>
<div id="selectuser" class="selectuser">
<? SELECTUSER($timezone,$userID,$con) ?>
</div>
</div>
<div id="topmenu" class="topmenu"><? TOPMENU('') ?></div>
<div id="managesite" class="managesite"><? MANAGESITE($selected_page,$con) ?></div>
</div>
</body>
</html>
<?
}
else
{
VERIFY_FAILED($selected_page,$con);
}
mysql_close($con);
?>