-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct-search.php
140 lines (105 loc) · 3.81 KB
/
product-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
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
<!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>Product Searched | K-Tech</title>
<link rel="icon" href="images/icon.png">
<link rel="stylesheet" href="Style.css">
</head>
<body>
<!--Header-->
<div class="container">
<?php include('partials-front/navbar.php')?>
<?php include('partials-front/serachbar.php')?>
</div>
<div class="small-container">
<form action="" method="POST">
<div class="row row2">
<h2 style="color: black;">All Searched Products</h2>
<select name="sortby" id="">
<option value="id">Default Shorting</option>
<option value="price">Short by price</option>
<option value="brand">Short by brand </option>
<option value="sale">Short by sale</option>
</select>
<input type="submit" name="sort" class="btn2" value="Sort">
</div>
</form>
<?php
if(isset($_POST['sort']))
{
$sort = $_POST['sortby'];
}
else
{
$sort = "id";
}
?>
<div class="row">
<?php
$item = $_SESSION['item'];
$brand = $_SESSION['bran'];
$category = $_SESSION['cat'];
?>
<?php
$sql = "SELECT * From product WHERE title LIKE '%$item%' AND brand LIKE '%$brand%' AND category LIKE '%$category%' ORDER BY $sort DESC";
$res = mysqli_query($conn,$sql);
$count = mysqli_num_rows($res);
if($count>0)
{
while($row=mysqli_fetch_assoc($res))
{
$id = $row['id'];
$image_name = $row['image_name1'];
$title = $row['title'];
$price =$row['price'];
$stock = $row['stock']
?>
<div class="col-4">
<h4><?php echo $title?></h4>
<?php
if($stock==0)
{
?>
<a href="product-details.php?id=<?php echo $id?>"><img class="stock" src="images/Stock.png" alt=""></a>
<?php
}
else
{
?>
<img class="stock2" src="images/Stock2.png" alt="">
<?php
}
?>
<a href="product-details.php?id=<?php echo $id?>"><img src="<?php echo SITEURL; ?>images/product/<?php echo $image_name?>"></a>
<h2>Rs.<?php echo $price?></h2>
</div>
<?php
}
}
else
{
echo "<div class='col-3'><h1>NO Product Added</h1></div>";
}
?>
</div>
</div>
<!----------Footer--------->
<?php include('partials-front/footer.php')?>
<!--js for menu toggle-->
<script>
var MenuItem = document.getElementById("MenuItem");
MenuItem.style.maxHeight="0px";
function menutoggle(){
if(MenuItem.style.maxHeight=="0px"){
MenuItem.style.maxHeight="200px";
}
else{
MenuItem.style.maxHeight="0px";
}
}
</script>
</body>
</html>