-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAdminMenu.php
More file actions
98 lines (72 loc) · 2.9 KB
/
AdminMenu.php
File metadata and controls
98 lines (72 loc) · 2.9 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
/*********************************************************************************
* Filename: AdminMenu.php
* Generated with CodeCharge v.1.1.19
* PHP build 02/26/2001
*********************************************************************************/
include ("./common.php");
include ("./Header.php");
include ("./Footer.php");
session_start();
$sFileName = "AdminMenu.php";
check_security(2);
?><html>
<head>
<title>Book Store</title>
<meta name="GENERATOR" content="YesSoftware CodeCharge v.1.1.19 using 'PHP.ccp'">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="cache-control" content="no-cache">
</head>
<body style="background-color: #FFFFFF; color: #000000; font-family: Arial, Tahoma, Verdana, Helveticabackground-color: #FFFFFF; color: #000000; font-family: Arial, Tahoma, Verdana, Helvetica">
<center>
<table>
<tr>
<td valign="top">
<? Menu_Show() ?>
</td>
</tr>
</table>
</center>
<hr>
<table>
<tr>
<td valign="top">
<? Form_Show() ?>
</td>
</tr>
</table>
<center>
<hr size=1 width=60%>
<table>
<tr>
<td valign="top">
<? Footer_Show() ?>
</td>
</tr>
</table>
<center><font face="Arial"><small>This dynamic site was generated with <a href="http://www.codecharge.com">CodeCharge</a></small></font></center>
</body>
</html>
<?
//********************************************************************************
function Form_Show()
{
global $styles;
?>
<table style="">
<tr>
<td style="background-color: #336699; text-align: Center; border-style: outset; border-width: 1"><font style="font-size: 12pt; color: #FFFFFF; font-weight: bold">Administration Menu</font></td></tr>
<tr>
<td style="background-color: #FFFFFF; border-width: 1"><a href="MembersGrid.php"><font style="font-size: 10pt; color: #000000">Members</font></a></td></tr><tr>
<td style="background-color: #FFFFFF; border-width: 1"><a href="OrdersGrid.php"><font style="font-size: 10pt; color: #000000">Orders</font></a></td></tr><tr>
<td style="background-color: #FFFFFF; border-width: 1"><a href="AdminBooks.php"><font style="font-size: 10pt; color: #000000">Books</font></a></td></tr><tr>
<td style="background-color: #FFFFFF; border-width: 1"><a href="CategoriesGrid.php"><font style="font-size: 10pt; color: #000000">Categories</font></a></td></tr><tr>
<td style="background-color: #FFFFFF; border-width: 1"><a href="EditorialsGrid.php"><font style="font-size: 10pt; color: #000000">Editorials</font></a></td></tr><tr>
<td style="background-color: #FFFFFF; border-width: 1"><a href="EditorialCatGrid.php"><font style="font-size: 10pt; color: #000000">Editorial Categories</font></a></td></tr><tr>
<td style="background-color: #FFFFFF; border-width: 1"><a href="CardTypesGrid.php"><font style="font-size: 10pt; color: #000000">Card Types</font></a></td>
</tr>
</table>
<?
}
?>