-
Notifications
You must be signed in to change notification settings - Fork 0
/
stuff.php
28 lines (27 loc) · 1.09 KB
/
stuff.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
<!DOCTYPE html>
<html>
<head>
<title>David A. Jones's compositions</title>
<link rel="stylesheet" type="text/css" href="indexStyle.css" />
</head>
<body>
<div class="main">
<h1>Compositions</h1>
<p>Here are recordings to a few of my best works. I hope you enjoy them.</p>
<div><a href = "index.html">Home</a></div>
<hr />
<?php
$first = "<iframe width='100%' height='166' scrolling='no' frameborder='no' src='https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/";
$last = "&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false'></iframe>";
$recordings[] = "tracks/176185926"; //Aswang
$recordings[] = "tracks/176152488"; //Trance
$recordings[] = "playlists/59032491"; //Incarnation
$recordings[] = "tracks/176184828"; //Tinalikuran
$recordings[] = "playlists/58707190"; //Leviathan
foreach ($recordings as $recording) {
echo "<div>$first$recording$last</div><hr />\n";
}
?>
</div>
</body>
</html>