-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.php
More file actions
83 lines (72 loc) · 1.99 KB
/
Copy pathlibrary.php
File metadata and controls
83 lines (72 loc) · 1.99 KB
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
<?php
require_once 'config/database.php';
require_once 'config/user_auth.php';
// Check if user is logged in
requireLogin();
// Get the requested game if specified
$game_id = isset($_GET['game']) ? (int)$_GET['game'] : 0;
$console = isset($_GET['console']) ? htmlspecialchars($_GET['console']) : '';
$pageTitle = "Game Library";
$username = getUserUsername();
// Get all available consoles
try {
$stmt = $pdo->query("SELECT * FROM consoles ORDER BY name");
$consoles = $stmt->fetchAll();
} catch (PDOException $e) {
$error = "Database error: " . $e->getMessage();
$consoles = [];
}
// Get games based on filter
try {
$whereClause = "";
$params = [];
if ($console) {
$whereClause = "WHERE c.slug = ?";
$params[] = $console;
}
$query = "
SELECT g.*, c.name as console_name, c.slug as console_slug
FROM games g
JOIN consoles c ON g.console_id = c.id
$whereClause
ORDER BY g.release_date DESC
";
$stmt = $pdo->prepare($query);
$stmt->execute($params);
$games = $stmt->fetchAll();
} catch (PDOException $e) {
$error = "Database error: " . $e->getMessage();
$games = [];
}
// Get featured games
try {
$stmt = $pdo->query("
SELECT g.*, c.name as console_name
FROM games g
JOIN consoles c ON g.console_id = c.id
WHERE g.is_featured = 1
ORDER BY g.release_date DESC
LIMIT 3
");
$featuredGames = $stmt->fetchAll();
} catch (PDOException $e) {
$error = "Database error: " . $e->getMessage();
$featuredGames = [];
}
// Get recently added games
try {
$stmt = $pdo->query("
SELECT g.*, c.name as console_name
FROM games g
JOIN consoles c ON g.console_id = c.id
ORDER BY g.created_at DESC
LIMIT 8
");
$recentGames = $stmt->fetchAll();
} catch (PDOException $e) {
$error = "Database error: " . $e->getMessage();
$recentGames = [];
}
// Include the HTML template
include 'library.html';
?>