-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategory.php
419 lines (308 loc) · 14 KB
/
category.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<?php require_once "header.php";require_once 'includes/rating.php';
$category = $_GET['list'];
?>
<script type="text/javascript" src="assets/js/jquery-1.11.3.js"></script>
<script type="text/javascript" src="assets/js/tabs.js"></script>
<link rel="stylesheet" type="text/css" href="assets/css/tabs_styles.css" />
<div class="main">
<div class="main-inner">
<div class="container">
<div class="row">
<div class="document-title">
<h1><?php echo $category;?></h1>
<ul class="breadcrumb">
<li><a href="#">Superlist</a></li>
<li><a href="#">Listing</a></li>
</ul>
</div><!-- /.document-title -->
<div class="col-sm-8 col-lg-9">
<div class="content">
<form class="filter" method="post" action="?">
<div class="row">
<div class="col-sm-12 col-md-4">
<div class="form-group">
<input type="text" placeholder="Keyword" class="form-control">
</div><!-- /.form-group -->
</div><!-- /.col-* -->
<div class="col-sm-12 col-md-4">
<div class="form-group">
<select class="form-control" title="Select Location">
<option>Bronx</option>
<option>Brooklyn</option>
<option>Manhattan</option>
<option>Staten Island</option>
<option>Queens</option>
</select>
</div><!-- /.form-group -->
</div><!-- /.col-* -->
<div class="col-sm-12 col-md-4">
<div class="form-group">
<select class="form-control" title="Select Category">
<option value="">Automotive</option>
<option value="">Jobs</option>
<option value="">Nightlife</option>
<option value="">Services</option>
</select>
</div><!-- /.form-group -->
</div><!-- /.col-* -->
</div><!-- /.row -->
<hr>
<div class="row">
<div class="col-sm-8">
<div class="filter-actions">
<a href="#"><i class="fa fa-close"></i> Reset Filter</a>
<a href="#"><i class="fa fa-save"></i> Save Search</a>
</div><!-- /.filter-actions -->
</div><!-- /.col-* -->
<div class="col-sm-4">
<button type="submit" class="btn btn-primary">Redefine Search Result</button>
</div><!-- /.col-* -->
</div><!-- /.row -->
</form>
<h2 class="page-title">
1802 results matching your query
<form method="get" action="?" class="filter-sort">
<div class="form-group">
<select title="Sort by">
<option name="price">Price</option>
<option name="rating">Rating</option>
<option name="title">Title</option>
</select>
</div><!-- /.form-group -->
<div class="form-group">
<select title="Order">
<option name="ASC">Asc</option>
<option name="DESC">Desc</option>
</select>
</div><!-- /.form-group -->
</form>
</h2><!-- /.page-title -->
<div class="cards-simple-wrapper">
<div class="row">
<div class="tabs">
<ul class="tab-links">
<?php require_once 'includes/db_connection.php';
$subcat_sql = "select distinct category from yuunga.add_business
where
category in (
select subcategory_name from yuunga.subcategories where category_id in (
select category_id from yuunga.category where category_name = '$category'))";
$subcat_query = mysqli_query($conn, $subcat_sql);
$tab_no = 1;
while ($result = mysqli_fetch_assoc($subcat_query)) {
if ($tab_no == 1) {
?>
<li class="active"><a href="#tab<?php echo $tab_no?>"><?php echo $result ['category']; ?></a></li>
<?php
}
else{
?>
<li ><a href="#tab<?php echo $tab_no?>"><?php echo $result ['category']; ?></a></li>
<?php
}
$tab_no = $tab_no + 1;
}
?>
</ul>
<div class="tab-content">
<?php
$subcat_sql = "select distinct category from yuunga.add_business
where
category in (
select subcategory_name from yuunga.subcategories where category_id in (
select category_id from yuunga.category where category_name = '$category'))";
$subcat_query = mysqli_query($conn, $subcat_sql);
$tab_ref = 1;
while ($result = mysqli_fetch_assoc($subcat_query)) {
if ($tab_ref == 1) {
?>
<div id="tab<?php echo $tab_ref?>" class="tab active">
<?php
}
else {
?>
<div id="tab<?php echo $tab_ref?>" class="tab">
<?php
}
$sub_category = $result['category'];
echo $sub_category;
$items_sql = "select * from yuunga.add_business where category = '$sub_category'";
$items_query = mysqli_query($conn, $items_sql);
while ($items_result = mysqli_fetch_assoc($items_query)) {
?>
<div class="col-sm-6 col-lg-4">
<div class="card-simple" data-background-image="assets/img/tmp/<?php echo $items_result ['logo']; ?>">
<div class="card-simple-background">
<div class="card-simple-content">
<h2><a href="listing-detail.html"><?php echo $items_result ['business_name']; ?></a></h2>
<div class="card-simple-rating">
<?php
rate($items_result['rating']);
?>
</div><!-- /.card-rating -->
<div class="card-simple-actions">
<a href="#" class="fa fa-star-o"></a>
<a href="listing-detail.html" class="fa fa-search"></a>
<a href="#" class="fa fa-heart-o"></a>
</div><!-- /.card-simple-actions -->
</div><!-- /.card-simple-content -->
<div class="card-simple-label"><?php echo $items_result ['location']; ?></div>
<div class="card-simple-price"><?php echo $items_result ['tel_no']; ?></div>
</div><!-- /.card-simple-background -->
</div><!-- /.card-simple -->
</div><!-- /.col-* -->
<?php
}
$tab_ref = $tab_ref + 1;
?>
</div>
<?php
}
?>
</div>
</div>
</div><!-- /.row -->
</div><!-- /.cards-simple-wrapper -->
<div class="pager">
<ul>
<li><a href="#">Prev</a></li>
<li><a href="#">5</a></li>
<li class="active"><a>6</a></li>
<li><a href="#">7</a></li>
<li><a href="#">Next</a></li>
</ul>
</div><!-- /.pagination -->
</div><!-- /.content -->
</div><!-- /.col-* -->
<div class="col-sm-4 col-lg-3">
<div class="sidebar">
<div class="widget">
<h2 class="widgettitle">Recent Listings</h2>
<div class="cards-small">
<div class="card-small">
<div class="card-small-image">
<a href="listing-detail.html">
<img src="assets/img/tmp/product-2.jpg" alt="Tasty Brazil Coffee">
</a>
</div><!-- /.card-small-image -->
<div class="card-small-content">
<h3><a href="listing-detail.html">Tasty Brazil Coffee</a></h3>
<h4><a href="listing-detail.html">New York / Village</a></h4>
<div class="card-small-price">$180 / person</div>
</div><!-- /.card-small-content -->
</div><!-- /.card-small -->
</div><!-- /.cards-small -->
<div class="cards-small">
<div class="card-small">
<div class="card-small-image">
<a href="listing-detail.html">
<img src="assets/img/tmp/product-3.jpg" alt="Healthy Breakfast">
</a>
</div><!-- /.card-small-image -->
<div class="card-small-content">
<h3><a href="listing-detail.html">Healthy Breakfast</a></h3>
<h4><a href="listing-detail.html">New York / Village</a></h4>
<div class="card-small-price">$180 / person</div>
</div><!-- /.card-small-content -->
</div><!-- /.card-small -->
</div><!-- /.cards-small -->
<div class="cards-small">
<div class="card-small">
<div class="card-small-image">
<a href="listing-detail.html">
<img src="assets/img/tmp/product-4.jpg" alt="Coffee & Newspaper">
</a>
</div><!-- /.card-small-image -->
<div class="card-small-content">
<h3><a href="listing-detail.html">Coffee & Newspaper</a></h3>
<h4><a href="listing-detail.html">New York / Village</a></h4>
<div class="card-small-price">$180 / person</div>
</div><!-- /.card-small-content -->
</div><!-- /.card-small -->
</div><!-- /.cards-small -->
</div><!-- /.widget -->
<div class="widget">
<h2 class="widgettitle">Filter</h2>
<div class="background-white p20">
<form method="post" action="?">
<div class="form-group">
<label for="">Keyword</label>
<input type="text" class="form-control" name="" id="">
</div><!-- /.form-group -->
<div class="form-group">
<label for="">Category</label>
<select class="form-control" title="Select Category">
<option>Automotive</option>
<option>Real Estate</option>
</select>
</div><!-- /.form-group -->
<div class="form-group">
<label for="">Location</label>
<select class="form-control" title="Select Location">
<option>New York</option>
<option>San Francisco</option>
</select>
</div><!-- /.form-group -->
<div class="form-group">
<label for="">Starting Price</label>
<input type="text" class="form-control" name="" id="">
</div><!-- /.form-group -->
<button class="btn btn-primary btn-block" type="submit">Search</button>
</form>
</div>
</div><!-- /.widget -->
<div class="widget">
<h2 class="widgettitle">Working Hours</h2>
<div class="p20 background-white">
<div class="working-hours">
<div class="day clearfix">
<span class="name">Mon</span><span class="hours">07:00 AM - 07:00 PM</span>
</div><!-- /.day -->
<div class="day clearfix">
<span class="name">Tue</span><span class="hours">07:00 AM - 07:00 PM</span>
</div><!-- /.day -->
<div class="day clearfix">
<span class="name">Wed</span><span class="hours">07:00 AM - 07:00 PM</span>
</div><!-- /.day -->
<div class="day clearfix">
<span class="name">Thu</span><span class="hours">07:00 AM - 07:00 PM</span>
</div><!-- /.day -->
<div class="day clearfix">
<span class="name">Fri</span><span class="hours">07:00 AM - 07:00 PM</span>
</div><!-- /.day -->
<div class="day clearfix">
<span class="name">Sat</span><span class="hours">07:00 AM - 02:00 PM</span>
</div><!-- /.day -->
<div class="day clearfix">
<span class="name">Sun</span><span class="hours">Closed</span>
</div><!-- /.day -->
</div>
</div>
</div><!-- /.widget -->
<div class="widget">
<h2 class="widgettitle">Categories</h2>
<ul class="menu">
<li><a href="#">Automotive</a></li>
<li><a href="#">Jobs</a></li>
<li><a href="#">Nightlife</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Transportation</a></li>
<li><a href="#">Real Estate</a></li>
<li><a href="#">Restaurants</a></li>
</ul><!-- /.menu -->
</div><!-- /.wifget -->
<div class="widget">
<h2 class="widgettitle">Archives</h2>
<ul class="menu">
<li><a href="#">August <strong class="pull-right">12</strong></a></li>
<li><a href="#">July <strong class="pull-right">23</strong></a></li>
<li><a href="#">June <strong class="pull-right">53</strong></a></li>
</ul><!-- /.menu -->
</div><!-- /.wifget -->
</div><!-- /.sidebar -->
</div><!-- /.col-* -->
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.main-inner -->
</div><!-- /.main -->
<?php require_once "footer.php";?>