-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
94 lines (92 loc) · 4.61 KB
/
search.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
<?php
include 'config.php';
if($_GET['search'] == ''){
header("Location: " . $hostname);
}else {
$db = new Database();
$db->select('options','site_title',null,null,null,null);
$result = $db->getResult();
if(!empty($result)){
$title = $result[0]['site_title'];
}else{
$title = "Shopping Project";
}
include 'header.php'; ?>
<div class="product-section content">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2 class="section-head">Search Results</h2>
</div>
</div>
<div class="row">
<div class="col-md-2 left-sidebar">
<?php
$db = new Database();
$search = $db->escapeString($_GET['search']);
$db->sql('SELECT sub_categories.sub_cat_id,sub_categories.sub_cat_title FROM products
LEFT JOIN sub_categories ON products.product_cat = sub_categories.cat_parent
WHERE products.product_title LIKE "%' . $search . '%"');
$result = $db->getResult(); ?>
<h3>Related Categories</h3>
<ul>
<?php if(count($result[0]) > 0){
foreach($result[0] as $row){ ?>
<li>
<a href="category.php?cat=<?php echo $row['sub_cat_id']; ?>"><?php echo $row['sub_cat_title']; ?></a>
</li>
<?php }
} ?>
</ul>
</div>
<div class="col-md-10">
<?php
$limit = 8;
$db->select('products','*',null,"product_title LIKE '%{$search}%'",null,$limit);
$result3 = $db->getResult();
if (count($result3) > 0) {
foreach($result3 as $row3) {
?>
<div class="col-md-3 col-sm-6">
<div class="product-grid">
<div class="product-image">
<a class="image" href="single_product.php?pid=<?php echo $row3['product_id']; ?>">
<img class="pic-1"
src="product-images/<?php echo $row3['featured_image']; ?>">
</a>
<div class="product-button-group">
<a href="single_product.php?pid=<?php echo $row3['product_id']; ?>"><i
class="fa fa-eye"></i></a>
<a href="" class="add-to-cart"
data-id="<?php echo $row3['product_id']; ?>"><i
class="fa fa-shopping-cart"></i></a>
<a href="" class="add-to-wishlist"
data-id="<?php echo $row3['product_id']; ?>"><i
class="fa fa-heart"></i></a>
</div>
</div>
<div class="product-content">
<h3 class="title">
<a href="single_product.php?pid=<?php echo $row3['product_id']; ?>"><?php echo substr($row3['product_title'],0,30).'...'; ?></a>
</h3>
<div class="price"><?php echo $cur_format; ?> <?php echo $row3['product_price']; ?></div>
</div>
</div>
</div>
<?php
}
} else {
?>
<div class="empty-result">!!! Result Not Found !!!</div>
<?php } ?>
<div class="pagination-outer">
<?php
echo $db->pagination('products',null,"product_title LIKE '%{$search}%'",$limit);
?>
</div>
</div>
</div>
</div>
</div>
<?php include 'footer.php';
} ?>