-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathusermenu.php
29 lines (27 loc) · 1.05 KB
/
usermenu.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
<?php
$filename = '';
$arr = explode("/", $_SERVER['PHP_SELF']);
$filename = end($arr);
?>
<div class="navbar">
<ul class="usermenu">
<li class="<?php if($filename === "user_dashboard.php") echo "active" ?>">
<a href="user_dashboard.php">Dashboard</a>
</li>
<li class="<?php if($filename === "new_booking.php") echo "active" ?>">
<a href="new_booking.php">Booking</a>
</li>
<li class="<?php if($filename === "user_manage_booking.php") echo "active" ?>">
<a href="user_manage_booking.php">Manage Booking</a>
</li>
<li class="<?php if($filename === "user_vh.php") echo "active" ?>">
<a href="user_vh.php">History</a>
</li>
<li class="<?php if($filename === "complaint.php") echo "active" ?>">
<a href="complaint.php">Register Complaint</a>
</li>
<li>
<a href="logout.php">Logout</a>
</li>
</ul>
</div>