forked from aritra1999/TimeTable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
result.php
46 lines (33 loc) · 1.01 KB
/
result.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>KIIT-HELP | Home</title>
<?php include'include/link.php';?>
</head>
<body>
<?php include'include/header.php'?>
<div class="container">
<span id="top">
<div align="left" style="display:inline-block;">
TIME TABLE
</div>
<div align="right" style="display:inline-block;font-size:1.5rem;">
<?php echo $_POST['sec'];?>
</div>
</span><br>
<?php
echo "It's ".date('l')."!";
?>
<?php include'display.php';?>
<div class="back">
<a href="./">
<img src="left-arrow.png" width="60px">
</a>
</div>
</div>
<?php include'include/footer.php'?>
</body>
</html>