-
Notifications
You must be signed in to change notification settings - Fork 0
/
categoryc.php
232 lines (205 loc) · 9.59 KB
/
categoryc.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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<?php
session_start();
// if (!isset($_SESSION['username'])) {
// $_SESSION['msg'] = "You must log in first";
// header('location: login.php');
// }
if (isset($_GET['logout'])) {
session_destroy();
unset($_SESSION['username']);
header("location: login.php");
}
$login=$_SESSION['loggin'];
?>
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<style>
#top_recom {
font-family: 'Times New Roman', Times, serif;
}
</style>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Merriweather&family=Merriweather+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="styleabout.css">
<link rel="stylesheet" href="style.css">
<title>HOSTEL WORLD</title>
</head>
<body>
<!-- navigation bar -->
<nav class="navbar fixed-top navbar-expand-lg navbar-dark navigations">
<div class="container-fluid">
<a class="navbar-brand" href="/project/index.php">HOSTEL WORLD</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="/project/index.php">Home</a>
</li>
<li class="nav-item">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Hostel</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/project/myhostels.php">My Profile</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/project/about.php">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/project/contact.php">Contact Us</a>
</li>
<?php
if($login){
echo "</li>
<li class='nav-item'>
<a class='nav-link'href='index.php?logout='1''>LOGOUT</a>
</li>";
}
?>
</ul>
<div class="d-flex">
<?php
if(!$login){
echo '<a class="navbar-brand" href="login.php">
<img src="https://img.icons8.com/color/48/000000/user.png" alt="" width="30" height="24" class="d-inline-block align-text-top">User Login
</a>
<a class="navbar-brand" href="admin_login.php">
<img src="https://img.icons8.com/external-itim2101-lineal-color-itim2101/64/000000/external-admin-network-technology-itim2101-lineal-color-itim2101-1.png" alt="" width="30" height="24" class="d-inline-block align-text-top">Admin
Login
</a>';
}
?>
<?php if (isset($_SESSION['username'])) : ?>
<p><img src="https://img.icons8.com/metro/26/000000/guest-male.png"><button class="btn btn-primary" type="submit"> <a href="myhostels.php" style="color: white; text-decoration:none"><?php echo $_SESSION['username']; ?></a></button> </p>
<?php endif ?>
</div>
</div>
</nav>
<br><br><br>
<br><br>
<div class="container">
<h2>List of Category C hostels</h2>
<table class="table table-hover">
<thead>
<tr>
<th scope="col">Hostel ID</th>
<th scope="col">Hostel Name</th>
<th scope="col">City</th>
<th scope="col">Availability</th>
<th scope="col">Actions</th>
</tr>
</thead>
<tbody>
<?php
include("connection.php");
$query="select * from hostels,category where category.hostel_id= hostels.hostel_id and category.category_id='3'";
$data=mysqli_query($conn,$query);
$total = mysqli_num_rows($data);
if($total!=0){
while($result=mysqli_fetch_assoc($data)){
$id=$result['hostel_id'];
echo "
<tr>
<td>".$result['hostel_id']."</td>
<td>".$result['hostel_name']."</td>
<td>".$result['city']."</td>
<td>".$result['seat_availability']."</td>";
echo "<td><a href='view.php?id=$id'class='btn btn-primary'>View Details</a></td>";
echo "</tr>";
}
}
?>
</tbody>
</table>
</div>
<br><br>
<!-- footer -->
<div class="footer">
<!-- Footer -->
<footer class="text-center text-white" style="background-color: rgb(209 20 80);">
<!-- Grid container -->
<div class="container">
<!-- Section: Links -->
<section class="mt-5">
<!-- Grid row-->
<div class="row text-center d-flex justify-content-center pt-5">
<!-- Grid column -->
<div class="col-md-2">
<h6 class="text-uppercase font-weight-bold">
<a href="/project/about.php" class="text-white">About us</a>
</h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2">
<h6 class="text-uppercase font-weight-bold">
<a href="/project/hostels.php" class="text-white">Hostels</a>
</h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2">
<h6 class="text-uppercase font-weight-bold">
<a href="#!" class="text-white">Review</a>
</h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2">
<h6 class="text-uppercase font-weight-bold">
<a href="/project/contact.php" class="text-white">Help</a>
</h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2">
<h6 class="text-uppercase font-weight-bold">
<a href="/project/contact.php" class="text-white">Contact</a>
</h6>
</div>
<!-- Grid column -->
</div>
<!-- Grid row-->
</section>
<!-- Section: Links -->
<hr class="my-5" />
<!-- Section: Text -->
<section class="mb-5">
<div class="row d-flex justify-content-center">
<div class="col-lg-8">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sunt distinctio earum repellat quaerat voluptatibus placeat nam, commodi optio pariatur est quia magnam eum harum corrupti dicta, aliquam sequi voluptate quas.
</p>
</div>
</div>
</section>
<!-- Section: Text -->
<!-- Section: Social -->
<section class="text-center mb-5">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-instagram"></a>
</section>
<!-- Section: Social -->
</div>
<!-- Grid container -->
<!-- Copyright -->
<!-- Copyright -->
</footer>
<!-- Footer -->
</div>
<!-- End of .container -->
</body>
</html>