-
Notifications
You must be signed in to change notification settings - Fork 1
/
dishes.php
246 lines (207 loc) · 11.2 KB
/
dishes.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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<!DOCTYPE html>
<html lang="en">
<?php
include("connection/connect.php");
error_reporting(0);
session_start();
include_once 'product-action.php';
?>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="#">
<title>Restaurant Manu</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/animsition.min.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
<link href="css/footer.css" rel="stylesheet">
</head>
<body>
<!--header starts-->
<?php include("includes/navbar.php") ?>
<!-- header end -->
<div class="page-wrapper">
<!-- top Links -->
<div class="top-links">
<div class="container">
<ul class="row links">
<li class="col-xs-12 col-sm-4 link-item"><span>1</span><a href="restaurants.php">Choose Restaurant</a></li>
<li class="col-xs-12 col-sm-4 link-item active"><span>2</span><a href="dishes.php?res_id=<?php echo $_GET['res_id']; ?>">Pick Your favorite food</a></li>
<li class="col-xs-12 col-sm-4 link-item"><span>3</span><a href="#">Order and Pay online</a></li>
</ul>
</div>
</div>
<!-- end:Top links -->
<!-- start: Inner page hero -->
<?php $ress = mysqli_query($db, "select * from restaurant where rs_id='$_GET[res_id]'");
$rows = mysqli_fetch_array($ress);
?>
<section class="inner-page-hero bg-image" data-image-src="images/restoran_banner.jpg">
<div class="profile">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 profile-img">
<div class="image-wrap">
<figure><?php echo '<img src="admin/Res_img/' . $rows['image'] . '" alt="Restaurant logo">'; ?></figure>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-8 profile-desc">
<div class="pull-left right-text white-txt">
<h6><a href="#"><?php echo $rows['title']; ?></a></h6>
<p><?php echo $rows['address']; ?></p>
<ul class="nav nav-inline">
<li class="nav-item"> <a class="nav-link active" href="#"><i class="fa fa-check"></i> Min Rp.30000</a> </li>
<li class="nav-item"> <a class="nav-link" href="#"><i class="fa fa-motorcycle"></i> 30 min</a> </li>
<li class="nav-item ratings">
<a class="nav-link" href="#" style="color: yellow;">
<span>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-o"></i>
</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end:Inner page hero -->
<div class="breadcrumb">
<div class="container">
</div>
</div>
<div class="container m-t-30">
<div class="row">
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-3">
<div class="widget widget-cart">
<div class="widget-heading">
<h3 class="widget-title text-dark">
Your Shopping Cart
</h3>
<div class="clearfix"></div>
</div>
<div class="order-row bg-white">
<div class="widget-body">
<?php
$item_total = 0;
foreach ($_SESSION["cart_item"] as $item) {
?>
<div class="title-row">
<?php echo $item["title"]; ?><a href="dishes.php?res_id=<?php echo $_GET['res_id']; ?>&action=remove&id=<?php echo $item["d_id"]; ?>">
<i class="fa fa-trash pull-right"></i></a>
</div>
<div class="form-group row no-gutter">
<div class="col-xs-8">
<input type="text" class="form-control b-r-0" value=<?php echo "Rp." . $item["price"]; ?> readonly id="exampleSelect1">
</div>
<div class="col-xs-4">
<input class="form-control" type="text" readonly value='<?php echo $item["quantity"]; ?>' id="example-number-input">
</div>
</div>
<?php
$item_total += ($item["price"] * $item["quantity"]);
}
?>
</div>
</div>
<!-- end:Order row -->
<div class="widget-body">
<div class="price-wrap text-xs-center">
<p>TOTAL</p>
<h3 class="value"><strong><?php echo "Rp." . $item_total; ?></strong></h3>
<p>Free Shipping</p>
<a href="checkout.php?res_id=<?php echo $_GET['res_id']; ?>&action=check" class="btn theme-btn btn-lg">Checkout</a>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-8 col-md-8 col-lg-6">
<!-- end:Widget menu -->
<div class="menu-widget" id="2">
<div class="widget-heading">
<h3 class="widget-title text-dark">
POPULAR ORDERS Delicious hot food! <a class="btn btn-link pull-right" data-toggle="collapse" href="#popular2" aria-expanded="true">
<i class="fa fa-angle-right pull-right"></i>
<i class="fa fa-angle-down pull-right"></i>
</a>
</h3>
<div class="clearfix"></div>
</div>
<div class="collapse in" id="popular2">
<?php
$stmt = $db->prepare("select * from dishes where rs_id='$_GET[res_id]'");
$stmt->execute();
$products = $stmt->get_result();
if (!empty($products)) {
foreach ($products as $product) {
?>
<div class="food-item">
<div class="row">
<div class="col-xs-12 col-sm-12 col-lg-8">
<form method="post" action='dishes.php?res_id=<?php echo $_GET['res_id']; ?>&action=add&id=<?php echo $product['d_id']; ?>'>
<div class="rest-logo pull-left">
<a class="restaurant-logo pull-left" href="#"><?php echo '<img src="admin/Res_img/dishes/' . $product['img'] . '" alt="Food logo">'; ?></a>
</div>
<!-- end:Logo -->
<div class="rest-descr">
<h6><a href="#"><?php echo $product['title']; ?></a></h6>
<p> <?php echo $product['slogan']; ?></p>
</div>
<!-- end:Description -->
</div>
<!-- end:col -->
<div class="col-xs-12 col-sm-12 col-lg-4 pull-right item-cart-info">
<span class="price pull-left">Rp.<?php echo $product['price']; ?></span>
<input class="b-r-0" type="text" name="quantity" style="margin-left:20px;" value="1" size="2" />
<input type="submit" class="btn theme-btn ctaBtn" style="margin-top:20px; background: rgb(0, 165, 126); color: white;" value="Add to Cart" />
</div>
</form>
</div>
<!-- end:row -->
</div>
<!-- end:Food item -->
<?php
}
}
?>
</div>
<!-- end:Collapse -->
</div>
<!-- end:Widget menu -->
</div>
</div>
<!-- end:row -->
</div>
<!-- end:Container -->
<!-- Featured restaurants ends -->
<!-- FOOTER SECTION ----------------------- -->
<?php include("includes/footer.php"); ?>
<!-- FOOTER SECTION END----------------- -->
</div>
<!-- end:page wrapper -->
</div>
<!--/end:Site wrapper -->
<!-- Bootstrap core JavaScript
================================================== -->
<script src="js/jquery.min.js"></script>
<script src="js/tether.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/animsition.min.js"></script>
<script src="js/bootstrap-slider.min.js"></script>
<script src="js/jquery.isotope.min.js"></script>
<script src="js/headroom.js"></script>
<script src="js/foodpicky.min.js"></script>
</body>
</html>