-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
57 lines (52 loc) · 2.63 KB
/
Copy pathindex.php
File metadata and controls
57 lines (52 loc) · 2.63 KB
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
<?php
include("Product.php");
$product = new Product();
$categories = $product->getCategories();
//$totalRecords = $product->getTotalProducts();
include('inc/header.php');
?>
<title>Demo Product Search Filtering</title>
<link rel="stylesheet" type='text/css' href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/fontawesome.min.css">
<link rel="stylesheet" type='text/css' href="css/style.css">
<?php include('inc/container.php');?>
<div class="content">
<div class="container-fluid">
<form method="post" id="search_form">
<div class="row">
<aside class="col-lg-3 col-md-4">
<div class="panel list">
<div class="panel-heading"><h3 class="panel-title" data-toggle="collapse" data-target="#panelOne" aria-expanded="true">Categories</h3></div>
<div class="panel-body collapse in" id="panelOne">
<select name="category" id="category" class='form-control'>
<option value="0">Select Category</option>
<?php
foreach ($categories as $key => $category){
?>
<option value="<?php echo $category["category_id"];?>"><?php echo $category["category_name"];?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="panel list">
<div class="panel-heading"><h3 class="panel-title" data-toggle="collapse" data-target="#panelOne" aria-expanded="true">Brand</h3></div>
<div class="panel-body collapse in" id="panelOne">
<select name="brand" id='brand' class="form-control" style="width:350px">
<option value="0">Select Brand</option>
</select>
</div>
</div>
</aside>
<section class="col-lg-9 col-md-8">
<div class="row">
<div id="results"></div>
</div>
</section>
</div>
<input type="hidden" id="totalRecords" value="<?php echo $totalRecords; ?>">
</form>
</div>
</div>
<script src="js/script.js"></script>
<?php include('inc/footer.php');?>