-
Notifications
You must be signed in to change notification settings - Fork 1
/
delete_food_items.php
183 lines (135 loc) · 4.95 KB
/
delete_food_items.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
<?php
include('session_m.php');
if(!isset($login_session)){
header('Location: managerlogin.php');
}
?>
<!DOCTYPE html>
<html>
<head>
<title> Manager Login | ZenHospitality' </title>
</head>
<link rel="stylesheet" type = "text/css" href ="css/delete_food_items.css">
<link rel="stylesheet" type = "text/css" href ="css/bootstrap.min.css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<body>
<button onclick="topFunction()" id="myBtn" title="Go to top">
<span class="glyphicon glyphicon-chevron-up"></span>
</button>
<script type="text/javascript">
window.onscroll = function()
{
scrollFunction()
};
function scrollFunction(){
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("myBtn").style.display = "block";
} else {
document.getElementById("myBtn").style.display = "none";
}
}
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<nav class="navbar navbar-inverse navbar-fixed-top navigation-clean-search" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#myNavbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.php">ZenHospitality</a>
</div>
<div class="collapse navbar-collapse " id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="index.php">Home</a></li>
<li><a href="aboutus.php">About</a></li>
<li><a href="contactus.php">Contact Us</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><span class="glyphicon glyphicon-user"></span> Welcome <?php echo $login_session; ?> </a></li>
<li class="active"> <a href="managerlogin.php">MANAGER CONTROL PANEL</a></li>
<li><a href="logout_m.php"><span class="glyphicon glyphicon-log-out"></span> Log Out </a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="jumbotron">
<h1>Hello Manager! </h1>
<p>Manage all your restaurant from here</p>
</div>
</div>
<div class="container">
<div class="container">
<div class="col">
</div>
</div>
<div class="col-xs-3" style="text-align: center;">
<div class="list-group">
<a href="myrestaurant.php" class="list-group-item ">My Restaurant</a>
<a href="view_food_items.php" class="list-group-item ">View Food Items</a>
<a href="add_food_items.php" class="list-group-item ">Add Food Items</a>
<a href="edit_food_items.php" class="list-group-item ">Edit Food Items</a>
<a href="delete_food_items.php" class="list-group-item active">Delete Food Items</a>
<a href="view_order_details.php" class="list-group-item ">View Order Details</a>
</div>
</div>
<div class="col-xs-9">
<div class="form-area" style="padding: 0px 100px 100px 100px;">
<form action="delete_food_items1.php" method="POST">
<br style="clear: both">
<h3 style="margin-bottom: 25px; text-align: center; font-size: 30px;"> DELETE YOUR FOOD ITEMS FROM HERE </h3>
<?php
// Storing Session
$user_check=$_SESSION['login_user1'];
$sql = "SELECT * FROM food f WHERE f.options = 'ENABLE' AND f.R_ID IN (SELECT r.R_ID FROM RESTAURANTS r WHERE r.M_ID='$user_check') ORDER BY F_ID";
$result = mysqli_query($conn, $sql);
if (mysqli_num_rows($result) > 0)
{
?>
<table class="table table-striped">
<thead class="thead-dark">
<tr>
<th> # </th>
<th> Food ID </th>
<th> Food Name </th>
<th> Price </th>
<th> Description </th>
<th> Restaurant ID </th>
</tr>
</thead>
<?PHP
//OUTPUT DATA OF EACH ROW
while($row = mysqli_fetch_assoc($result)){
?>
<tbody>
<tr>
<td> <input name="checkbox[]" type="checkbox" value="<?php echo $row['F_ID']; ?>"/> </td>
<td><?php echo $row["F_ID"]; ?></td>
<td><?php echo $row["name"]; ?></td>
<td><?php echo $row["price"]; ?></td>
<td><?php echo $row["description"]; ?></td>
<td><?php echo $row["R_ID"]; ?></td>
</tr>
</tbody>
<?php } ?>
</table>
<br>
<div class="form-group">
<button type="submit" id="submit" name="delete" value="Delete" class="btn btn-danger pull-right"> DELETE</button>
</div>
<?php } else { ?>
<h4><center>0 RESULTS</center> </h4>
<?php } ?>
</form>
</div>
</div>
</div>
</body>
</html>