-
Notifications
You must be signed in to change notification settings - Fork 0
/
bordreservation.php
348 lines (286 loc) · 15.6 KB
/
bordreservation.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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
<?php
include('top.php');
include('variable.php');
?>
<div id="page">
<div id="indhold">
<div id="indholdText2">
<div id="indholdDiv2">
<div id="indholdLeft">
<!-- Her følger en PHP kode der tager højde for de forskellige input man giver "navn, billet, plads", når man bestiller plads -->
<?php
$numInput = $_GET['pid'];
$numInput = stripslashes($numInput);
$numInput = mysqli_real_escape_string($db,$numInput);
// 2017 Winter fix! Denne værdi skal ændres til en random billet-ID for at virke!
$ticketInput = "AEC-SRK-AMS";
$nameInput = $_POST[playername];
$nameInput = stripcslashes($nameInput);
$nameInput = mysqli_real_escape_string($db,$nameInput);
/* Dette for loop checker, hvor den første ikke reserverede (hvide) plads er, og gør den til $currentTable */
for ($ii = 1; $ii <= 80; $ii++)
{
$color = mysqli_fetch_assoc(mysqli_query($db,"SELECT Color FROM booking WHERE SeatID = $ii"));
if ($color["Color"] == "White") {$currentTable = $ii; break;}
}
if (isset($numInput) && is_numeric($numInput) && $numInput >= 1 && $numInput <= 80 ) {
$id = $numInput;
/* Her ses der om pladsen allerede er taget (kigges på farven) */
if (isset($ticketInput)) {
$stmt = $db->prepare("SELECT COUNT(SeatID)
FROM booking
WHERE Color='White'
AND SeatID = ?");
$stmt->bind_param("i", $id);
$stmt->execute();
$isFree = NULL;
$stmt->bind_result ($isFree);
$stmt->fetch();
$stmt->close();
/* Her ses der om ticket-ID'en er gyldig/findes */
if ($isFree > 0) {
$numResults = 1;
/* Her ses der om der allerede er blevet booket på den plads*/
if ($numResults > 0) {
$bookingRes = mysqli_query($db, "SELECT TicketID
FROM booking
WHERE TicketID='$ticketInput'");
$numBookRes = mysqli_num_rows($bookingRes);
/* SKAL ÆNDRES SÅ MAN RESERVERER EN NY + SLETTER DEN GAMLE */
if ($numBookRes > 0) {
if ($nameInput != '' AND $id != 'Choose a seat') {
mysqli_query($db, "UPDATE booking
SET PlayerName='$nameInput',
TicketID='$ticketInput',
Color='Red'
WHERE SeatID=$id");
echo "<script type='text/javascript'>alert('You have now booked seat " . $id . " ');</script>";
} else {
} /* test */
}
/* Her reserveres pladsen */
else {
if ($nameInput != '' AND $id != 'Choose a seat') {
mysqli_query($db, "UPDATE booking
SET PlayerName='$nameInput',
TicketID='$ticketInput',
Color='Red'
WHERE SeatID=$id");
echo "<script type='text/javascript'>alert('You have now booked seat " . $id . " ');</script>";
} else {
}
}
}
} else {
echo "<script type='text/javascript'>alert('This seat is already occupied. Choose another, man!');</script>";
}
}
} else {
header("location:?pid=$currentTable");
}
?>
<!-- Her indsættes kantine billedet, der er baggrund for reservationssystemet -->
<img src="images/bordplan2.png" id="bordplan" alt="bord" style="position:relative; z-index: 1;">
<!-- Følgende PHP indsætter en "div" på top af billedet på hver enkelt plads fra 1-80. Koordinaterne findes på Databasen, og et loop kører derefter
alle pladser igennem, og indsætter de mange div's -->
<?php
for ($i = 1; $i <= 80; $i++) {
echo ("<a href='?pid=" . $i . "'>");
echo ("<div id='" . $i . "'");
echo ("style='");
echo ("height:16px;");
echo ("width:16px;");
echo ("z-index: 3;");
echo ("margin-top:");
$getTop = mysqli_query($db, "SELECT top
FROM booking
WHERE SEATID=" . $i);
while ($row = mysqli_fetch_array($getTop)) {
echo $row['top'];
}
echo ("px;");
echo ("margin-left:");
$getLeft = mysqli_query($db, "SELECT mleft
FROM booking
WHERE SEATID=" . $i);
while ($row = mysqli_fetch_array($getLeft)) {
echo $row['mleft'];
}
echo ("px;");
echo ("position:absolute;");
echo ("background-color:");
$getColor = mysqli_query($db, "SELECT color
FROM booking
WHERE SEATID=" . $i);
while ($row = mysqli_fetch_array($getColor)) {
echo $row['color'];
}
echo (" ' ");
echo ("title='");
$getName = mysqli_query($db, "SELECT SeatID, PlayerName
FROM booking
WHERE SEATID=" . $i);
while ($row = mysqli_fetch_array($getName)) {
echo "Seat " . $row['SeatID'] . ": " . $row['PlayerName'];
}
echo (" '> ");
echo ("<p>" . $i . "</p>");
echo (" </div> ");
echo (" </a> ");
}
/* Denne IF sætning sørger for at det sæde man er ved at vælge bliver farvet grønt */
if (isset($numInput))
{
$idd = $numInput;
echo ("<div id='" . $idd . "'");
echo ("style='");
echo ("height:16px;");
echo ("width:16px;");
echo ("z-index: 3;");
echo ("margin-top:");
$getTop = mysqli_query($db, "SELECT top
FROM booking
WHERE SEATID=" . $idd);
while ($row = mysqli_fetch_array($getTop)) {
echo $row['top'];
}
echo ("px;");
echo ("margin-left:");
$getLeft = mysqli_query($db, "SELECT mleft
FROM booking
WHERE SEATID=" . $idd);
while ($row = mysqli_fetch_array($getLeft)) {
echo $row['mleft'];
}
echo ("px;");
echo ("position:absolute;");
echo ("background-color:green;");
echo (" ' ");
echo (" '> ");
echo ("<p>" . $idd . "</p>");
echo (" </div> ");
}
?>
<!-- De følgen DIV's er det "usynlige" lag over billedet af kantinen -->
<div id="zone1" Title="Stille-zone">
</div>
<div id="zone2" Title="Musik-zone">
</div>
<div id="zone3" Title="Køkken">
</div>
<div id="zone4" Title="Konsol-hjørnet">
</div>
<div id="zone5" Title="Automater">
</div>
<div id="zone6" Title="Automater" style="
margin-top: -28px;
margin-left: 180px;">
</div>
<div id="zone6" Title="Automater" style="
margin-top: -118px;
margin-left: 180px;">
</div>
<div id="zone7" Title="Søjle" style="
margin-top: -622px;
margin-left: 54px;">
</div>
<div id="zone7" Title="Søjle" style="
margin-top: -622px;
margin-left: 108px;">
</div>
<div id="zone7" Title="Søjle" style="
margin-top: -514px;
margin-left: 108px;">
</div>
<div id="zone7" Title="Søjle" style="
margin-top: -388px;
margin-left: 108px;">
</div>
<div id="zone7" Title="Søjle" style="
margin-top: -262px;
margin-left: 108px;">
</div>
<div id="zone7" Title="Søjle" style="
margin-top: -136px;
margin-left: 108px;">
</div>
</div>
<!-- Her checkes der om bordreservationen er "åben" eller "lukket". Hvis det er åbent indsættes bestillingssystemet -->
<?php
if ($jaNej['yesNo'] == 'ja')
{
echo ("<div id='indholdRight'>
<table style='margin-left: 0px;'>
<tr>
<td>
<div style='background: red; height: 16px; width:16px; border-style: solid;'>
</div>
</td>
<td>
= Optaget
</td>
</tr>
<tr>
<td>
<div style='background: white; height: 16px; width:16px; border-style: solid;'>
</div>
</td>
<td>
= Fri plads
</td>
</tr>
<tr>
<td>
<div style='background: green; height: 16px; width:16px; border-style: solid;'>
</div>
</td>
<td>
= Nuværende valg
</td>
</tr>
</table>
</br>
<h3 style='text-align: center; font-weight: bold;'> Vælg og klik på en ledig plads på billedet til
venstre, og indsæt dit navn
for at bestille.</h3>
<form action='' method='post'>
<table>
<tr>
<td>
Valgt plads:
</td>
<td>
<input name='seat' value=' ");
echo ($id . "'");
echo ("readonly='readonly'>
</td>
</tr>
<tr>
<td>
Navn:
</td>
<td>
<input name='playername' type='text'>
</td>
</tr>
<tr>
<td>
<button type='submit' value='Submit'>Reservér</button>
</td>
</tr>
</table>
</form>
</div>");
}
else {echo ("<div id='indholdRight'>
<h3 style='font-size: 42px;
text-align: center;'>
BORDRESERVATION ER LUKKET </h3> </div>");}
?>
</div>
</div>
</div>
</div>
<?php
include('bottom.html');
?>