-
Notifications
You must be signed in to change notification settings - Fork 2
/
deletefood.php
116 lines (86 loc) · 2.78 KB
/
deletefood.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
<?php
include('connection.php');
//echo $id=$_GET['id'];
if(isset($_GET['id']))
{
$id=$_GET['id'];
$q=mysqli_query($con,"select tbfood.fldimage,tblvendor.fld_email from tbfood inner join tblvendor on tbfood.fldvendor_id=tbfood.fldvendor_id where food_id='$id' ");
$res=mysqli_fetch_assoc($q);
$e=$res['fld_email'];
$img=$res['fldimage'];
unlink("image/restaurant/$e/foodimages/$img");
if(mysqli_query($con,"delete from tbfood where food_id='$id' "))
{
header( "refresh:5;url=dashboard.php" );
}
else
{
echo "failed to delete";
}
}
else
{
header("location:vendor_login.php");
}
//rmdir("image/$e/foodimages");
//rmdir("image/$e");
if(mysqli_query($con,"delete from tbfood where food_id='$id' "))
{
header( "refresh:5;url=dashboard.php" );
}
else
{
echo "failed to delete";
}
?>
<html>
<head>
<title>Hotel</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<style>
h1 {
text-align: center;
font-size: 60px;
margin-top: 0px;
}
p {
text-align: center;
font-size: 60px;
margin-top: 0px;
}
</style>
</head>
<body>
<div class="container" style="margin:0px auto;text-align:center;">
<p style="color:green;"> Please Wait We Are Updating</p>
<img src="img/lg.walking-clock-preloader.gif"/></div>
<h1><time>00</time></h1>
<script>
var h1 = document.getElementsByTagName('h1')[0],
start = document.getElementById('start'),
stop = document.getElementById('stop'),
clear = document.getElementById('clear'),
seconds = 0, minutes = 0, hours = 0,
t;
function add() {
seconds++;
if (seconds >= 60) {
seconds = 0;
minutes++;
if (minutes >= 60) {
minutes = 0;
hours++;
}
}
h1.textContent = (seconds > 9 ? seconds : "0" + seconds);
timer();
}
function timer() {
t = setTimeout(add, 1000);
}
timer();
</script>
</body>