-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch.php
146 lines (134 loc) · 5.33 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
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
<?php
session_start();
if(!isset($_SESSION['u_name'])){
header("location: login.php");
}
include "inc/dbh.inc.php";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width initial-scale=1">
<title>FOOD COURT</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<script src="https://kit.fontawesome.com/041a644664.js" crossorigin="anonymous"></script>
</head>
<body>
<!--navigation-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="index.php">Food Court</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-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 mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.php">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="aboutus.php">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#contact">Contact Us</a>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item pr-1">
<form method="POST" class="form-inline mt-1" action="search.php">
<input type="text" name="search" placeholder="search" class="form-control mr-1">
<button class="btn btn-light btn-outline-success btn-md" name="submit-search"><i class="fas fa-search"></i>
</button>
</form>
</li>
<li class="nav-item dropdown no-arrow">
<a class="nav-link dropdown-toggle" href="#" id="userDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="mr-2 d-none d-lg-inline text-gray-600 small">
<?php echo $_SESSION['u_name']; ?>
</span>
<?php
$img = $_SESSION['u_name'];
$avatar = "select profile from users where username = '$img';";
$result = mysqli_query($con, $avatar);
while ($row = mysqli_fetch_assoc($result)) {
?>
<img class="img-profile rounded-circle" src="<?php echo $row['profile']; ?>" style="height: 2rem; width: 2rem;">
</a>
<?php } ?>
<!-- Dropdown - User Information -->
<div class="dropdown-menu dropdown-menu-right shadow animated--grow-in" aria-labelledby="userDropdown">
<a class="dropdown-item" href="admin_profile.php">
<i class="fas fa-user fa-sm fa-fw mr-2 text-gray-400"></i>
Profile
</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#logoutModal">
<i class="fas fa-sign-out-alt fa-sm fa-fw mr-2 text-gray-400"></i>
Logout
</a>
</div>
</li>
</ul>
</div>
</nav>
<!--end navigation-->
<!--jumbotron code-->
<div class="jumbotron text-center">
<h1>Your Search Results Is Here</h1>
</div>
<!--jumbotron code-->
<!--cart-->
<div class="container">
<div class="row">
<?php
if (isset($_POST['submit-search']) or ($_GET['search'])){
$search = $_POST['search'];
$sql = "select * from foodlist where fname like '%$search%' or fdescription like '%$search%';";
$result = mysqli_query($con, $sql);
$resultcheck = mysqli_num_rows($result);
if ($resultcheck > 0) {
while ($row = mysqli_fetch_assoc($result)) {
?>
<div class="col-md-3 pb-3">
<form method="POST" action="inc/cartcheck.inc.php?fid=<?php echo $row['fid']; ?>">
<div class="card">
<img class="card-img-top img-fluid" style="height:300px;" src="uploads/<?php echo $row['fimage']; ?>" alt="foodimage">
<div class="card-body text-center">
<h4 class="card-title" style="font-size:20px;"><?php echo $row['fname']; ?></h4>
<h6 class="card-text">₹ <?php echo $row['fprice']; ?></h6>
<p class="card-text" style="font-size: 14px;"><?php echo $row['fdescription']; ?></p>
<p style="font-size: 15px;">Quantity: <select name="qty">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
</select></p>
<input type="hidden" name="hidden_fname" value="<?php echo $row['fname'] ?>">
<input type="hidden" name="hidden_fprice" value="<?php echo $row['fprice'] ?>">
<input type="hidden" name="hidden_frestaurent" value="<?php echo $row['frestaurents'] ?>">
<button class="btn btn-success" name="submit"><i class="fa fa-cart-plus"></i> Add To Cart</button>
</div>
</div>
</form>
</div>
<?php
}
} else {
echo "<script>alert('There is no result for your search query')</script>";
echo "<script>window.location='foodlist.php'</script>";
}
}
?>
</div>
</div>
<!--cart-->
<?php
include "footer.php";
?>