forked from jicksy/Online-Food-Ordering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
remove_item.php
91 lines (83 loc) · 3.19 KB
/
remove_item.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/reset.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/layout.css" type="text/css" media="screen">
<script src="js/jquery-1.7.1.min.js" type="text/javascript"></script>
<script src="js/cufon-yui.js" type="text/javascript"></script>
<script src="js/cufon-replace.js" type="text/javascript"></script>
<script src="js/Dynalight_400.font.js" type="text/javascript"></script>
<script src="js/FF-cash.js" type="text/javascript"></script>
</head>
<body id="page6">
<!--==============================header=================================-->
<header>
<div class="row-top">
<div class="main">
<div class="wrapper">
<h1><a href="index.html">Fudla</a></h1>
<nav>
<ul class="menu">
<li><a href="index.html">Home</a></li>
<li><a href="menu.php">Menu</a></li>
<li><a href="comp.php">Reviews</a></li>
<li><a class="active" href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>
</div>
<div class="row-bot">
<div class="row-bot-bg">
<div class="main">
<h2>Online Food <span>Ordering</span></h2>
</div>
</div>
</div>
</header>
<!--==============================content================================-->
<section id="content"><div class="ic"></div>
<div class="main">
<div class="wrapper">
<h3 class="p1">Orders</h3>
<table width="600" border="1" >
<tr><td width="200"><strong>Item Name</strong></td><td width="200"><strong>Category</strong></td></tr>
<?php
$con = mysql_connect("localhost","jjm","123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
session_start();
mysql_select_db("restraunt", $con);
$sql1="select r_id from restraunt where uname='". $_SESSION['name']."'";
$rs=mysql_query($sql1,$con);
while($row=mysql_fetch_array($rs))
{
$id=$row['r_id'];}
$sql="select *from hotel_menu where r_id='".$id."' ";
$rs1=mysql_query($sql,$con);
while($row1=mysql_fetch_array($rs1))
{
$it=$row1['item_name'];
$cat=$row1['category'];
?>
<tr><td width="200"><?php echo $it;?></td><td width="200"><?php echo $cat;?></td><td width="200"><input type="button"
class="button" onClick="location.href='remove.php?id=<?php echo $it; ?>'" value="Remove" ></td>
</tr> <?php } ?> </table>
</div>
</div>
</section>
<!--==============================footer=================================-->
<footer>
<div class="main">
<div class="aligncenter">
</div>
</div>
</footer>
<script type="text/javascript"> Cufon.now(); </script>
</body>
</html>