-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapath_nav.php
More file actions
15 lines (14 loc) · 1.08 KB
/
apath_nav.php
File metadata and controls
15 lines (14 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
$current_page = basename($_SERVER['PHP_SELF']);
?>
<nav>
<ul>
<li><a href="student_home.php" class="<?php echo ($current_page == 'student_home.php') ? 'active' : ''; ?>">Home</a></li>
<li><a href="student_profile.php" class="<?php echo ($current_page == 'student_profile.php') ? 'active' : ''; ?>">Personal Profile</a></li>
<li><a href="student_flight.php" class="<?php echo ($current_page == 'student_flight.php') ? 'active' : ''; ?>">Flight Information</a></li>
<li><a href="student_housing.php" class="<?php echo ($current_page == 'student_housing.php') ? 'active' : ''; ?>">Temp Housing Need</a></li>
<li><a href="student_pickup.php" class="<?php echo ($current_page == 'student_pickup.php') ? 'active' : ''; ?>">Pickup Information</a></li>
<li><a href="student_house_info.php" class="<?php echo ($current_page == 'student_house_info.php') ? 'active' : ''; ?>">Temp Housing Information</a></li>
<li><a href="logout.php" class="<?php echo ($current_page == 'logout.php') ? 'active' : ''; ?>">Logout</a></li>
</ul>
</nav>