-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowse.php
37 lines (19 loc) · 802 Bytes
/
browse.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
<?php
include("includes/includedFiles.php");
?>
<h1 class = "pageHeadingBig">You Might Also Like</h1>
<div class ="gridViewContainer">
<?php
$albumQuery = mysqli_query($con, "SELECT * FROM albums ORDER BY RAND() LIMIT 10");
while($row = mysqli_fetch_array($albumQuery)) {
echo "<div class='gridViewItem'>
<span role='link' tabindex='0' onclick='openPage(\"album.php?id=". $row['id'] . "\")'>
<img src ='" . $row['artworkPath'] . "'>
<div class = 'gridViewInfo'>"
. $row['title'] .
"</div>
</span>
</div>";
}
?>
</div>