-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathheader.php
More file actions
48 lines (38 loc) · 1.24 KB
/
header.php
File metadata and controls
48 lines (38 loc) · 1.24 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
<?php
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<link rel="stylesheet" href="images/Underground.css" type="text/css" />
<title>E-Workshop</title>
</head>
<body>
<!-- wrap starts here -->
<div id="wrap">
<!-- header -->
<div id="header">
<!-- tabs -->
<ul>
<li id="current"><a href="index.php"><span>Home</span></a></li>
<?php
if(isset($_SESSION[custid]))
{
echo "<li><a href='account.php'><span>Account</span></a></li>";
}
else if(!(isset($_SESSION[empid])))
{
echo "<li><a href='login.php'><span>Login</span></a></li>
<li><a href='registration.php'><span>Registration</span></a></li>
<li><a href='service.php'><span>Vehicle Service</span></a></li>";
}
?>
<li><a href="vehiclestore.php"><span>Vehicle Store</span></a></li>
<li><a href="sparepartsstore.php"><span>Spare Parts</span></a></li>
</ul>
</div>
<div id="header-logo">
<div id="logo">
<span class="red">Online Vehicle Management System</span>
</div>
</div>