blob: d3118a640e1b1319dde029aaa4d99832828f510a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, target-densityDpi=device-dpi">
<link rel="stylesheet" href="./res/styles.css">
<script src="./res/main.js"></script>
</head>
<body>
<div id="container">
<?php include_once('header.php');?>
<?php include_once('titlebar.php');?>
<?php include_once('music.php');?>
<?php
$musiclist = fetch_range_music();
?>
<?php include('musiclist.php');?>
</div>
</body>
</html>
|