-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmdeletefood.php
174 lines (149 loc) · 6.1 KB
/
mdeletefood.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
<?php
session_start();
include_once "inc/dbh.inc.php";
if(!isset($_SESSION['u_name'])){
header("location: mlogin.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">
</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 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>
<img class="img-profile rounded-circle" src="https://source.unsplash.com/QAB-WJcbgJk/60x60" style="height: 2rem; width: 2rem;">
</a>
<!-- Dropdown - User Information -->
<div class="dropdown-menu dropdown-menu-right shadow animated--grow-in" aria-labelledby="userDropdown"> <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-->
<!--logout model-->
<div class="modal fade" id="logoutModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Ready to Leave?</h5>
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">Select "Logout" below to end your current session</div>
<form method="POST" action="inc/logout.inc.php">
<div class="modal-footer">
<button class="btn btn-secondary" type="button" data-dismiss="modal">Cancel</button>
<button class="btn btn-danger" name="submit">Logout</button>
</div>
</form>
</div>
</div>
</div>
<!--logout model-->
<div class="jumbotron">
<?php
$restaurent = $_SESSION['u_name'];
$check = "select rname from restaurents where runame='$restaurent';";
$result = mysqli_query($con, $check);
$resultcheck = mysqli_num_rows($result);
if ($resultcheck > 0) {
while ( $row = mysqli_fetch_assoc($result)) {
$_SESSION['rname'] = $row['rname'];
}
}
?>
<h1 style="font-size: 63px;">Hello <?php echo $_SESSION['rname']; ?>!</h1>
<p class="pt-3" style="font-size: 23px;">Manage Your Control Panel From Here</p>
</div>
<div class="container">
<div class="row">
<div class="col-md-4 pb-3">
<div class="mylist list-group">
<a href="liveorders.php" class="list-group-item">New Orders</a>
<a href="mviewfood.php" class="list-group-item ">View Food Items</a>
<a href="maddfood.php" class="list-group-item ">Add Food Items</a>
<a href="meditfood.php" class="list-group-item ">Edit Food Items</a>
<a href="mdeletefood.php" class="list-group-item active">Delete Food Items</a>
<a href="deliveryboy.php" class="list-group-item ">Delivery Boys</a>
</div>
</div>
<div class="col-md-8 pt-1 pb-3">
<?php
if (isset($_GET['delete'])) {
$error = $_GET['delete'];
if ($error == "success") {
echo "<p class='text-center alert alert-success'>Item Deleted Successfully</p>";
}
}
?>
<legend class="text-center" style="border:1px solid black; width: 100%; margin: 0 auto;">DELETE FOOD ITEMS LIST
<table class="table table-responsive-md mytbl text-center">
<thead>
<tr>
<th><b>Food ID</b></th>
<th><b>Name</b></th>
<th><b>Price</b></th>
<th><b>Description</b></th>
<th><b>Delete</b></th>
</tr>
</thead>
<?php
$manager = $_SESSION['u_name'];
$sql = "select * from foodlist where manager = '$manager';";
$result = mysqli_query($con, $sql);
$resultcheck = mysqli_num_rows($result);
if ($resultcheck > 0) {
while ($row = mysqli_fetch_assoc($result)) {
?>
<tbody>
<tr>
<td><?php echo $row['fid']; ?></td>
<td><?php echo $row['fname']; ?></td>
<td>₹<?php echo $row['fprice']; ?></td>
<td><?php echo $row['fdescription']; ?></td>
<td><a class="btn btn-danger" href="inc/deletefood.inc.php?id=<?php echo $row['fid']; ?>" >Delete</a></td>
</tr>
<?php } } ?>
</tbody>
</table>
</legend>
</div>
</div>
</div>
<?php
include 'footer.php';
?>