-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding.php
More file actions
34 lines (31 loc) · 837 Bytes
/
Copy pathlanding.php
File metadata and controls
34 lines (31 loc) · 837 Bytes
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
<!doctype html>
<html>
<head>
<title>Pamplin Advising Tool</title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<nav>
<img src="vt.svg" height="15%" width="15%">
<a href="landing.php">Home</a> |
<a href="timetable.php">Course Catalog</a> |
<a href="record.php">Registration Record</a> |
<a href="advising.php">Registration</a> |
</nav>
</br>
<img src="pamplin.jpg"/>
<?php
//resume the session variable on this page
session_start();
$timeString = "";
$currentTime = date("a");
if ($currentTime == "am") {
$timeString = "morning";
} else {
$timeString = "afternoon";
}
echo "<p>Good ".$timeString.", ".$_SESSION["pid"]."!</p>";
?>
<p><a href="logout.php">Click here to log out</a></p>
</body>
</html>