This repository has been archived by the owner on Oct 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
favourites.php
83 lines (65 loc) · 3.35 KB
/
favourites.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
<?php
if(!empty($_SESSION["username"])) {
$total_pages = $conn->query("SELECT COUNT(*) FROM `favourites` WHERE `user`='$uID'")->fetch_row()[0];
$page = isset($_GET['pagination']) && is_numeric($_GET['pagination']) ? $_GET['pagination'] : 1;
$num_results_on_page = "50";
if ($stmt = $conn->prepare("SELECT * FROM `favourites` WHERE `user`='$uID' ORDER BY `when` DESC LIMIT ?,?")) {
$calc_page = ($page - 1) * $num_results_on_page;
$stmt->bind_param('ii', $calc_page, $num_results_on_page);
$stmt->execute();
$result = $stmt->get_result();
$stmt->close();
}
?>
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">My Favourites</h3>
</div>
<?php
if ($result->num_rows > 0) {
while($disc = $result->fetch_assoc()) { ?>
<div class="panel-body">
<?php
$reDisc = $disc["disc"];
$reDisc = $conn->query("SELECT * FROM `discs` WHERE `id`='$reDisc' LIMIT 1");
$reDisc = mysqli_fetch_assoc($reDisc);
?>
<a href="<?= $url ?>disc/<?= $disc["disc"] ?>"><b><?= $reDisc["name"] ?></b></a> at <?= $disc["when"] ?>
</div>
<?php } } ?>
<div class="panel-body text-center">
<?php if (ceil($total_pages / $num_results_on_page) > 0): ?>
<ul class="pagination">
<?php if ($page > 1): ?>
<li class="prev"><a href="<?php echo $url; echo "user/favourites/"; echo $page-1 ?>">Prev</a></li>
<?php endif; ?>
<?php if ($page > 3): ?>
<li class="start"><a href="<?php echo $url; echo "user/favourites/"; ?>1">1</a></li>
<li class="dots"></li>
<?php endif; ?>
<?php if ($page-2 > 0): ?><li class="page"><a href="<?php echo $url; echo "user/favourites/"; echo $page-2 ?>"><?php echo $page-2 ?></a></li><?php endif; ?>
<?php if ($page-1 > 0): ?><li class="page"><a href="<?php echo $url; echo "user/favourites/"; echo $page-1 ?>"><?php echo $page-1 ?></a></li><?php endif; ?>
<li class="currentpage"><a href="<?php echo $url; echo "user/favourites/"; echo $page; ?>"><?php echo $page ?></a></li>
<?php if ($page+1 < ceil($total_pages / $num_results_on_page)+1): ?><li class="page"><a href="<?php echo $url; echo "user/favourites/"; echo $page+1 ?>"><?php echo $page+1 ?></a></li><?php endif; ?>
<?php if ($page+2 < ceil($total_pages / $num_results_on_page)+1): ?><li class="page"><a href="<?php echo $url; echo "user/favourites/"; echo $page+2 ?>"><?php echo $page+2 ?></a></li><?php endif; ?>
<?php if ($page < ceil($total_pages / $num_results_on_page)-2): ?>
<li class="dots"></li>
<li class="end"><a href="<?php echo $url; echo "user/favourites/"; echo ceil($total_pages / $num_results_on_page) ?>"><?php echo ceil($total_pages / $num_results_on_page) ?></a></li>
<?php endif; ?>
<?php if ($page < ceil($total_pages / $num_results_on_page)): ?>
<li class="next"><a href="<?php echo $url; echo "user/favourites/"; echo $page+1 ?>">Next</a></li>
<?php endif; ?>
</ul>
<?php endif; ?>
</div>
</div>
<?php } else { ?>
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">Error!</h3>
</div>
<div class="panel-body">
This page is only for Members...
</div>
</div>
<?php } ?>