20 lines
287 B
PHP
20 lines
287 B
PHP
<?php
|
|
|
|
include("dialog.php");
|
|
include("menu.php");
|
|
|
|
$ls_Song_ = array(
|
|
"title" => "Something",
|
|
"url" => "music/rn_something.mp3",
|
|
"duration" => "03:06",
|
|
"description" => array(
|
|
"Artist" => "raYn",
|
|
"Released" => "2007"
|
|
)
|
|
);
|
|
|
|
MusicEntry($ls_Song_);
|
|
|
|
include("footer.php");
|
|
|
|
?>
|