-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathv_nav.php
More file actions
16 lines (15 loc) · 1.24 KB
/
v_nav.php
File metadata and controls
16 lines (15 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
$current_page = basename($_SERVER['PHP_SELF']);
?>
<nav>
<ul>
<li><a href="volunteer_home.php" class="<?php echo ($current_page == 'volunteer_home.php') ? 'active' : ''; ?>">Home</a></li>
<li><a href="check_pickup_needs.php" class="<?php echo ($current_page == 'check_pickup_needs.php') ? 'active' : ''; ?>">Check Pickup Needs</a></li>
<li><a href="volunteer_profile.php" class="<?php echo ($current_page == 'volunteer_profile.php') ? 'active' : ''; ?>">Personal Profile</a></li>
<li><a href="volunteer_car.php" class="<?php echo ($current_page == 'volunteer_car.php') ? 'active' : ''; ?>">Car Information</a></li>
<li><a href="volunteer_house.php" class="<?php echo ($current_page == 'volunteer_house.php') ? 'active' : ''; ?>">House Information</a></li>
<li><a href="volunteer_pickup.php" class="<?php echo ($current_page == 'volunteer_pickup.php') ? 'active' : ''; ?>">Pickup Assignment</a></li>
<li><a href="volunteer_temp_house.php" class="<?php echo ($current_page == 'volunteer_temp_house.php') ? 'active' : ''; ?>">Temporary House Assignment</a></li>
<li><a href="logout.php" class="<?php echo ($current_page == 'logout.php') ? 'active' : ''; ?>">Logout</a></li>
</ul>
</nav>