-
Notifications
You must be signed in to change notification settings - Fork 1
/
book.php
204 lines (189 loc) · 9.34 KB
/
book.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
<!-- select-menu.php -->
<?php
if (isset($_POST['confirm'])) {
include 'dbCon.php';
$con = connect();
$res_id = $_POST['res_id'];
$reservation_name = $_POST['reservation_name'];
$reservation_phone = $_POST['reservation_phone'];
$reservation_date = $_POST['reservation_date'];
$reservation_time = $_POST['reservation_time'];
$bkashnumber = '';
$Rinsql = "SELECT * from restaurant_info WHERE id = '$res_id';";
$Rinresult = $con->query($Rinsql);
foreach ($Rinresult as $rri) {
$bkashnumber = $rri['bkashnumber'];
}
$table = $_POST["table"];
$chair = $_POST["chair"];
include 'template/header.php'; ?>
<body>
<?php include 'template/nav-bar.php'; ?>
<!-- END nav -->
<section class="home-slider owl-carousel" style="height: 400px;">
<div class="slider-item" style="background-image: url('images/bg_1.jpg');" data-stellar-background-ratio="0.5">
<div class="overlay"></div>
<div class="container">
<div class="row slider-text align-items-center justify-content-center">
<div class="col-md-10 col-sm-12 ftco-animate text-center" style="padding-bottom: 25%;">
<p class="breadcrumbs"><span class="mr-2"><a href="index.php">Home</a></span> <span>Booking</span></p>
<h1 class="mb-3">Booking</h1>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section bg-light">
<div class="container">
<div class="row justify-content-center mb-5 pb-5">
<div class="col-md-7 text-center heading-section ftco-animate">
<span class="subheading">Booking</span>
<h2>Confirm Your Booking</h2>
</div>
</div>
<div class="row block-9 mb-4">
<div class="col-md-6 pr-md-5 flex-column">
<div class="row d-block flex-row">
<h2 class="h4 mb-4">Contact Information</h2>
<div class="col mb-3 d-flex py-4 border" style="background: white;">
<div class="align-self-center">
<p class="mb-0"><span>Name:</span> <a href=""><?php echo $reservation_name; ?></a></p>
<p class="mb-0"><span>Phone:</span> <a href="tel://1234567920"><?php echo $reservation_phone; ?></a></p>
<p class="mb-0"><span>Reservation Date:</span> <a href=""><?php echo $reservation_date; ?></a></p>
<p class="mb-0"><span>Reservation Time:</span> <a href=""><?php echo $reservation_time; ?></a></p>
</div>
</div>
<div class="col mb-3 d-flex py-4 border" style="background: white;">
<div class="align-self-center">
<p class="mb-0"><span>Table No:</span>
<?php for($p = 0; $p < count($_POST["table"]); $p++){
$t_id = $_POST['table'][$p];
$sql4 = "SELECT * FROM `restaurant_tables` WHERE id = '$t_id';";
$result4 = $con->query($sql4);
foreach ($result4 as $r4) {
?>
<a style="color: #FFB911;"><?php echo $r4['table_name']; ?></a>
<?php } } ?>
</p>
<p class="mb-0"><span>Chair No:</span>
<?php for($q = 0; $q < count($_POST["chair"]); $q++){
$c_id = $_POST['chair'][$q];
$sql5 = "SELECT * FROM `restaurant_chair` WHERE id = '$c_id';";
$result5 = $con->query($sql5);
foreach ($result5 as $r5) {
?>
<a style="color: #FFB911;"><?php echo $r5['chair_no']; ?>,</a>
<?php } } ?>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 pr-md-5 flex-column">
<div class="row d-block flex-row">
<h2 class="h4 mb-4">Menu Item Information</h2>
<div class="col mb-3 d-flex py-4 border" style="background: white;">
<div class="align-self-center" style="width: 100%">
<table style="width: 100%">
<thead>
<tr>
<th>Image</th>
<th>Item Name</th>
<th>Unit Price</th>
<th>Quantity</th>
<th>Subtotal</th>
</tr>
</thead>
<tbody>
<?php
$total_price = 0;
for($i = 0; $i < count($_POST["item"]); $i++){
$i_id = $_POST['item'][$i];
$qty = $_POST["qty"][$i];
//echo $qty;
$c = 1;
$Itmsql = "SELECT * FROM `menu_item` WHERE id = '$i_id';";
$Itmresult = $con->query($Itmsql);
foreach ($Itmresult as $itmr) {
//echo $itmr['price'];
$total_price = $total_price + ($qty * $itmr['price']);
?>
<tr>
<td><img style="height: 40px;width: 40px;" src="dashboard/item-image/<?php echo $itmr['image']; ?>" >
</td>
<td><?php echo $itmr['item_name']; ?></td>
<td><?php echo $itmr['price']; ?></td>
<td><?php echo $qty; ?></td>
<td><?php echo $qty * $itmr['price']; ?></td>
</tr>
<?php $c++; } } ?>
</tbody>
</table>
</div>
</div>
<div class="col mb-3 d-flex py-4 border" style="background: white;">
<div class="align-self-center">
<p class="mb-0"><span>Total Price:</span> <a href=""><?php echo $total_price; ?> ₹</a></p>
</div>
</div>
</div>
</div>
<div class="col-md-12">
<div class="col mb-3 border" style="background: white;">
<h3 class="text-center">Pay First</h3>
<div class="row">
<div class="col-md-6" style="text-align: center;">
<img style="height: 100px; width: 152px;" src="images/bkash-logo.png">
<p class="text-center">Account Number:</p>
<h6 class="text-center"><?php echo $bkashnumber; ?></h6>
</div>
<div class="col-md-6">
<h6>Procedure:</h6>
<ol>
<li>send money</li>
<li>netbanking</li>
<li>upi</li>
<li>wallet</li>
<li>paytm</li>
<li>Enter transaction number</li>
</ol>
</div>
</div>
</div>
</div>
<form action="manage-insert.php" method="POST">
<div class="col-lg-12" style="text-align: center;">
<div class="form-group">
<input type="text" name="transaction_id" class="form-control" placeholder="Transaction Id" required="">
</div>
<input type="hidden" name="res_id" value="<?php echo $res_id; ?>">
<input type="hidden" name="total_price" value="<?php echo $total_price; ?>">
<input type="hidden" name="reservation_name" value="<?php echo $reservation_name; ?>">
<input type="hidden" name="reservation_phone" value="<?php echo $reservation_phone; ?>">
<input type="hidden" name="reservation_date" value="<?php echo $reservation_date; ?>">
<input type="hidden" name="reservation_time" value="<?php echo $reservation_time; ?>">
<?php for($r = 0; $r < count($_POST["table"]); $r++){
$tbl_id = $_POST['table'][$r]; ?>
<input type="hidden" name="table[]" value="<?php echo $tbl_id; ?>">
<?php } for($s = 0; $s < count($_POST["chair"]); $s++){
$chr_id = $_POST['chair'][$s]; ?>
<input type="hidden" name="chair[]" value="<?php echo $chr_id; ?>">
<?php } ?>
<?php for($t = 0; $t < count($_POST["item"]); $t++){
$i_id = $_POST['item'][$t];
$qty = $_POST['qty'][$t];
?>
<input type="hidden" name="item[]" value="<?php echo $i_id; ?>">
<input type="hidden" name="qty[]" value="<?php echo $qty; ?>">
<?php } ?>
<input type="submit" value="Book" name="book" class="btn btn-primary py-3 px-5">
</div>
</form>
</div>
</section>
<?php include 'template/instagram.php'; ?>
<?php include 'template/footer.php'; ?>
<?php include 'template/script.php'; ?>
</body>
</html>
<?php } ?>