-
Notifications
You must be signed in to change notification settings - Fork 10
/
landing_page.php
193 lines (160 loc) · 5.21 KB
/
landing_page.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<!-- <link rel="stylesheet" href="landing page.css"> -->
<style>
h1 {
background-color: black;
opacity: 0.6;
height: 105px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
width: 100vw;
color: wheat;
}
* {
margin: 0%;
padding: 0%;
}
.firstform {
padding: 25px;
width: max-content;
margin: 100px auto;
font-size: 20px;
border: 1px solid red;
}
#src_id {
padding: 10px;
font-size: 16px;
width: -webkit-fill-available;
margin-bottom: 25px;
}
#to_id {
padding: 10px;
font-size: 16px;
width: -webkit-fill-available;
margin-bottom: 25px;
}
#date_id {
padding: 10px;
font-size: 16px;
width: -webkit-fill-available;
margin-bottom: 25px;
font-family: auto;
}
.submit {
padding: 10px;
background-color: #666666;
border: none;
color: white;
font-size: 17px;
cursor: pointer;
border-radius: 3px;
}
input[type="submit"]:hover {
background-color: black;
color: wheat;
}
.secondform {
padding: 25px;
width: max-content;
margin: auto;
font-size: 20px;
border: 1px solid red;
margin-bottom: 25px;
position: relative;
top: -58px;
}
th {
padding: 5px;
border: none;
}
td {
padding: 5px;
border: none;
}
.lastbutton {
margin: auto;
display: block;
padding: 11px;
font-size: 19px;
background-color: #666666;
border: none;
color: white;
cursor: pointer;
border-radius: 3px;
}
</style>
</head>
<body>
<center>
<h1><u>Ticket Reservations</u></h1>
</center>
<form action="" method="post" class="firstform">
from: <select name="src_name" id="src_id">
<option value="Durgapur">Durgapur</option>
<option value="Burnpur">Burnpur</option>
<option value="Bishnupur">Bishnupur</option>
<option value="Dubrajpurpur">Dubrajpurpur</option>
<option value="Kolkata">Kolkata</option>
</select><br>
to: <select name="to_name" id="to_id">
<option value="Durgapur">Durgapur</option>
<option value="Burnpur">Burnpur</option>
<option value="Bishnupur">Bishnupur</option>
<option value="Dubrajpurpur">Dubrajpurpur</option>
<option value="Kolkata">Kolkata</option>
<option value="Burdwan">Burdwan</option>
</select><br><br>
Date of journey: <input type="date" name="date_name" id="date_id">
<br><br>
<?php
session_start();
?>
<input name="submit" type="submit" value="GET DETAILS" class="submit">
</div>
</form>
<br><br>
<form action="passenger info.php" method="post" class="secondform">
<?php
if (isset($_POST['submit'])) {
$frm = $_POST['src_name'];
$to = $_POST['to_name'];
$_SESSION["frm"] = $_POST['src_name'];
$_SESSION["to"] = $_POST['to_name'];
$_SESSION["dt"] = $_POST['date_name'];
$db = mysqli_connect('localhost', 'root', '', 'online_bus') or die("Could not connect to Database");
$querry = "SELECT * FROM bus_details WHERE source='$frm' AND destination='$to'";
if ($result = mysqli_query($db, $querry) or die("Could not execute querry")) {
print('<table style="border: 2px solid blue;">
<tr>
<th>BUS NAME</th>
<th>FARE</th>
<th>VACANT SEATS</th>
<th>SELECT</th>
</tr>');
while ($row = mysqli_fetch_row($result)) {
print('<tr>
<td>' . $row[0] . '</td>
<td align="center"><input type="hidden" value="' . $row[3] . '" name="fair_name">' . $row[3] . '</td>
<td align="center">' . $row[4] . '</td>
<td align="center"><input type="radio" name="radio_name" value="' . $row[0] . '"></td>
</tr> ');
}
print('</table>');
}
}
?>
<br><br>
<!-- <form action="passenger info.php" method="post"> -->
<input type="submit" value="Submit" class="lastbutton">
<!-- </form> -->
</form>
</body>
</html>