-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHeader.php
More file actions
30 lines (19 loc) · 1.3 KB
/
Header.php
File metadata and controls
30 lines (19 loc) · 1.3 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
<?
//********************************************************************************
function Menu_Show()
{
global $styles;
?>
<table style="">
<tr>
<td style="background-color: #FFFFFF; border-width: 1"><a href="Default.php"><font style="font-size: 10pt; color: #000000"><img src="images/Logo_bookstore.gif" border="0"></font></a></td>
<td style="background-color: #FFFFFF; border-width: 1"><a href="Default.php"><font style="font-size: 10pt; color: #000000"><img src="images/icon_home.gif" border="0"></font></a></td>
<td style="background-color: #FFFFFF; border-width: 1"><a href="Registration.php"><font style="font-size: 10pt; color: #000000"><img src="images/icon_reg.gif" border="0"></font></a></td>
<td style="background-color: #FFFFFF; border-width: 1"><a href="ShoppingCart.php"><font style="font-size: 10pt; color: #000000"><img src="images/icon_shop.gif" border="0"></font></a></td>
<td style="background-color: #FFFFFF; border-width: 1"><a href="Login.php"><font style="font-size: 10pt; color: #000000"><img src="images/icon_sign.gif" border="0"></font></a></td>
<td style="background-color: #FFFFFF; border-width: 1"><a href="AdminMenu.php"><font style="font-size: 10pt; color: #000000"><img src="images/icon_admin.gif" border="0"></font></a></td>
</tr>
</table>
<?
}
?>