-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisplay.php
executable file
·33 lines (30 loc) · 984 Bytes
/
display.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="static/styles.css">
</head>
<body>
<div align="center">
<div class="header"><a href="index.php"><img class="musehub" src="musehub.png" /></a></div>
<div class="nav">
<a href="index.php">Back</a>
</div>
<br><br><br>
<?php
require("dbconnect.php");
require("tableshow.php");
echo "<h3> Artists </h3>";
show_artists($conn);
echo "<br><br>";
echo "<h3> Albums </h3>";
show_albums($conn);
echo "<br><br>";
echo "<h3> Record Labels </h3>";
show_recordLabels($conn);
echo "<br><br>";
echo "<h3> Songs </h3>";
show_songs($conn);
?>
</div>
</body>
</html>