-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathairline.php
62 lines (50 loc) · 1.43 KB
/
airline.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
include 'components/head.php';
include 'components/header.php';
?>
<body>
<div id="content">
<?php
include 'connectdb.php';
?>
<div class="home-page">
<span>
<form action="airline.php" method="post">
<input id="test" class="nav-button" type="submit" value="Home">
</form>
</span>
<span>
<form action="onTime.php" method="post">
<input class="nav-button" type="submit" value="Check On-Time Flights">
</form>
</span>
<span>
<form action="available.php" method="post">
<input class="nav-button" type="submit" value="Check Available Flights">
</form>
</span>
<span>
<form action="addFlight.php" method="post">
<input class="nav-button" type="submit" value="Add a Flight">
</form>
</span>
<span>
<form action="updateTimes.php" method="post">
<input class="nav-button" type="submit" value="Update Departure Time">
</form>
</span>
<span>
<form action="showSeats.php" method="post">
<input class="nav-button" type="submit" value="Show Average Number of Seats">
</form>
</span>
</div>
<?php
$connection = NULL;
?>
</div>
</body>
<?php
include 'components/footer.php';
?>
</html>