forked from jicksy/Online-Food-Ordering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhotel_user.php~
197 lines (158 loc) · 6.65 KB
/
hotel_user.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<!DOCTYPE html>
<html lang="en">
<head>
<title>hotel user</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>
<!--[if lt IE 8]>
<div style=' clear: both; text-align:center; position: relative;'>
<a href="http://windows.microsoft.com/en-US/internet-explorer/products/ie/home?ocid=ie6_countdown_bannercode">
<img src="http://storage.ie6countdown.com/assets/100/images/banners/warning_bar_0000_us.jpg" border="0" height="42" width="820" alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today." />
</a>
</div>
<![endif]-->
<!--[if lt IE 9]>
<script type="text/javascript" src="js/html5.js"></script>
<![endif]-->
</head>
<?php
session_start();
if(empty($_SESSION['name']))
{
header("Location:login.html");
}
else
{
?>
<body id="page6">
<!--==============================header=================================-->
<header>
<div class="row-top">
<a href="logout.php"><strong>Logout</strong></a>
<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">
<article class="col-1">
<div class="indent-left">
<h3 class="p1">Dashboard</h3>
<dl>
<table><tr><td><input type="button" class="button-1" value="View Orders " onClick="location.href='view_orders.php'"></td></tr>
<tr><td><input type="button" class="button-1" value=" Add Item " onClick="location.href='add_menu_item.html'"></td></tr>
<tr><td><input type="button" class="button-1" value="Remove Item" onClick="location.href='remove_item.php'"></td></tr></table>
</dl>
</div>
</article>
<article class="col-2">
<h3 class="p1">Profile</h3>
<?php
$con = mysql_connect("localhost","jjm","123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("restraunt", $con);
$nm=$_SESSION['name'];
$sql="select *from restraunt.restraunt where uname='".$nm."'";
$sql1="select password from user where username='".$nm."'";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
$result=mysql_query($sql,$con);
$result1=mysql_query($sql1,$con);
while($row = mysql_fetch_array($result))
{
$cname=$row['r_id'];
$uname=$row['uname'];
$mail=$row['mail'];
$hn=$row['r_name'];
$st=$row['r_street'];
$ar=$row['r_area'];
//$pass=$row['password'];
?>
<form id="contact-form" name="reg" method="post" action="update.php">
<table border="0">
<tr>
<td>ID</td>
<td><input id="st" name="street" type="text" class="input"readonly="true" value="
<?php echo $cname; ?>
"></td>
<td><div id="street1"><br/></div><br/><br/></td>
</tr>
<tr>
<td>Hotel Name</td><td><input id="appnam" name="cnam" type="text" class="input" readonly value="
<?php echo $hn; ?>
"></td>
<td><div id="appnam1"><br/></div><br/><br/></td>
</tr>
<tr>
<td>Username</td><td><input id="uname" name="uname" type="text" class="input" readonly value="
<?php echo $uname; ?>
"></td>
<td><div id="village1"><br/></div><br/><br/></td>
</tr>
<tr>
<td>Email-id</td>
<td><input id="mail2" name="mail" type="text" class="input"readonly="true" value="
<?php echo $mail; ?>
" ></td>
<td><div id="mail1"><br/></div></br></br></td>
</tr>
<tr>
<td>Street</td>
<td><input id="h_no" name="house_no" type="text" class="input" readonly value="
<?php echo $st; ?>
"></td>
<td><div id="hno1"><br/></div><br/><br/></td>
</tr>
<tr>
<td>Area</td>
<td><input id="area2" name="area" type="text" class="input"readonly="true" value="
<?php echo $ar; }?>
"></td>
<td><div id="area1"><br/></div><br/><br/></td>
</tr>
</table> </article>
</div>
</div>
</section>
<!--==============================footer=================================-->
<footer>
<div class="main">
<div class="aligncenter">
</div>
</div>
</footer>
<script type="text/javascript"> Cufon.now(); </script>
</body><?php }?>
</html>