-
Notifications
You must be signed in to change notification settings - Fork 0
/
catalogue.php
274 lines (238 loc) · 13.6 KB
/
catalogue.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
<?php
session_start();
//Include database connection
require_once('includes/db.inc.php');
//Include remember me login
require_once('includes/remember_cookie.inc.php');
//Include CSRFToken generator
require_once('includes/csrf_token.inc.php');
//Print function to avoid XSS
require_once('includes/xss.inc.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="The Official Page of Engage Games">
<meta name="author" content="Szymon Bialkowski & Shane Doyle">
<link rel="icon" href="assets/img/favicon.ico">
<title>Engage Catalogue</title>
<!-- Bootstrap core CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="assets/css/catalogue.css" rel="stylesheet">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,700" rel="stylesheet">
<!-- HTML5 shiv and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="loading"></div>
<?php
//Navbar
require_once('includes/navbar.inc.php');
?>
<div class="main-body">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="catalogue">
<form action="catalogue.php">
<div class="form-row">
<div class="col-auto sort">
<select onchange="this.form.submit()" name="q" class="custom-select mb-2 mr-sm-2 mb-sm-0 decorated" id="inlineFormCustomSelect">
<?php
// Check for sorting preference
if (!empty($_GET['q'])) {
if ($_GET['q'] == 'newest')
{ ?>
<option value="">Random</option>
<option selected="" value="newest">Newest</option>
<option value="low-high">Price Low-High</option>
<option value="high-low">Price High-Low</option>
<?php
}
//Low to high sorting preference
elseif ($_GET['q'] == 'low-high')
{ ?>
<option value="">Random</option>
<option value="newest">Newest</option>
<option selected="" value="low-high">Price Low-High</option>
<option value="high-low">Price High-Low</option>
<?php
}
//High to low sorting preference
elseif ($_GET['q'] == 'high-low')
{ ?>
<option value="">Random</option>
<option value="newest">Newest</option>
<option selected="" value="low-high">Price Low-High</option>
<option selected="" value="high-low">Price High-Low</option>
<?php
}
//Invalid sorting preference, standard options
else
{ ?>
<option value="" selected="">Random</option>
<option value="newest">Newest</option>
<option value="low-high">Price Low-High</option>
<option value="high-low">Price High-Low</option>
<?php
}
}
//No sorting preference, standard options
else
{ ?>
<option value="" selected="">Random</option>
<option value="newest">Newest</option>
<option value="low-high">Price Low-High</option>
<option value="high-low">Price High-Low</option>
<?php
} ?>
</select>
</div>
</div>
</form>
<?php
// Check for sorting preference
if (!empty($_GET['q']))
{
//Newest games, sort by release date
if ($_GET['q'] == 'newest')
{ ?>
<?php
$result = mysqli_query($db, "SELECT game_id, title, console, price, cover_path from game order by -release_date limit 12");
for ($i=0; $i < 12; $i++) {
$row = mysqli_fetch_row($result); ?>
<div class="main-body-white-col">
<div class="container">
<div class="row">
<div class="col-sm-12">
<a href="game.php?q=<?php xss ($row[0]); ?>">
<img class="main-body-img" src="assets/img/games/<?php xss ($row[4]); ?>" alt="The cover for <?php xss ($row[1]); ?>">
</a>
<h3 class="text-black main-body-white-col-h3"><?php xss ($row[1]); ?></h3>
<p class="margin-0"><?php xss ($row[2]); ?></p>
<p class="main-body-white-col-p margin-0">€<?php xss ($row[3]); ?></p>
</div>
</div>
</div>
</div>
<?php
}//end of for loop
}//end of if
//Low to high sorting preference, games with lowest price
elseif ($_GET['q'] == 'low-high') { ?>
<?php
$result = mysqli_query($db, "SELECT game_id, title, console, price, cover_path from game order by price limit 12");
for ($i=0; $i < 12; $i++) {
$row = mysqli_fetch_row($result); ?>
<div class="main-body-white-col">
<div class="container">
<div class="row">
<div class="col-sm-12">
<a href="game.php?q=<?php xss ($row[0]); ?>">
<img class="main-body-img" src="assets/img/games/<?php xss ($row[4]); ?>" alt="The cover for <?php xss ($row[1]); ?>">
</a>
<h3 class="text-black main-body-white-col-h3"><?php xss ($row[1]); ?></h3>
<p class="margin-0"><?php xss ($row[2]); ?></p>
<p class="main-body-white-col-p margin-0">€<?php xss ($row[3]); ?></p>
</div>
</div>
</div>
</div>
<?php
}//end of for loop
}//end of elseif
//High to low sorting preference, games with highest price
elseif ($_GET['q'] == 'high-low') { ?>
<?php
$result = mysqli_query($db, "SELECT game_id, title, console, price, cover_path from game order by -price limit 12");
for ($i=0; $i < 12; $i++)
{
$row = mysqli_fetch_row($result); ?>
<div class="main-body-white-col">
<div class="container">
<div class="row">
<div class="col-sm-12">
<a href="game.php?q=<?php xss ($row[0]); ?>">
<img class="main-body-img" src="assets/img/games/<?php xss ($row[4]); ?>" alt="The cover for <?php xss ($row[1]); ?>">
</a>
<h3 class="text-black main-body-white-col-h3"><?php xss ($row[1]); ?></h3>
<p class="margin-0"><?php xss ($row[2]); ?></p>
<p class="main-body-white-col-p margin-0">€<?php xss ($row[3]); ?></p>
</div>
</div>
</div>
</div>
<?php
}//end of for loop
}//end of elseif
else {
$result = mysqli_query($db, "SELECT game_id, title, console, price, cover_path from game order by RAND() limit 12");
for ($i=0; $i < 12; $i++) {
$row = mysqli_fetch_row($result); ?>
<div class="main-body-white-col">
<div class="container">
<div class="row">
<div class="col-sm-12">
<a href="game.php?q=<?php xss ($row[0]); ?>">
<img class="main-body-img" src="assets/img/games/<?php xss ($row[4]); ?>" alt="The cover for <?php xss ($row[1]); ?>">
</a>
<h3 class="text-black main-body-white-col-h3"><?php xss ($row[1]); ?></h3>
<p class="margin-0"><?php xss ($row[2]); ?></p>
<p class="main-body-white-col-p margin-0">€<?php xss ($row[3]); ?></p>
</div>
</div>
</div>
</div>
<?php
}//end of for loop
}//end of else
}//end of if
////No sorting preference, random games
else
{
$result = mysqli_query($db, "SELECT game_id, title, console, price, cover_path from game order by RAND() limit 12");
for ($i=0; $i < 12; $i++)
{
$row = mysqli_fetch_row($result); ?>
<div class="main-body-white-col">
<div class="container">
<div class="row">
<div class="col-sm-12">
<a href="game.php?q=<?php xss ($row[0]); ?>">
<img class="main-body-img" src="assets/img/games/<?php xss ($row[4]); ?>" alt="The cover for <?php xss ($row[1]); ?>">
</a>
<h3 class="text-black main-body-white-col-h3"><?php xss ($row[1]); ?></h3>
<p class="margin-0"><?php xss ($row[2]); ?></p>
<p class="main-body-white-col-p margin-0">€<?php xss ($row[3]); ?></p>
</div>
</div>
</div>
</div>
<?php
}
} ?>
</div>
</div>
</div>
</div>
</div>
<?php
//Print footer
require_once('includes/footer.inc.php');
?>
<!-- JQuery JavaScript -->
<script src="assets/js/jquery.min.js"></script>
<!-- Bootstrap JavaScript -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- Custom JS -->
<script src="assets/js/custom.js"></script>
</body>