使用HTML将音乐播放列表上传到网站

时间:2014-06-19 02:21:40

标签: html web playlist

<embed name="PlayList" src="PlayList.m3u"
       width="300" height="75" loop="false" hidden="false"
       autostart="true">
</embed>

我是这样做的: 1创建一个M3U文件,其中包含我已放在服务器上的所有歌曲的名称。 2使用HTML代码链接该文件,如下所示。

什么都没发生......

这就是我的m3u文件的样子:

Neo.mp3 在基督Alone.wav

我刚刚学习了HTML,所以有没有一种方法只使用没有Javascript或php的HTML来解决这个问题?

谢谢!

1 个答案:

答案 0 :(得分:0)

尝试将位置保存到数据库并使用php访问位置值并改为使用此代码

假设您有一个表名称播放列表和列名称位置。

<?php$result=mysql_query("select * from playlist")
while($rows=mysql_fetch_array($result))
{?>
<embed name="PlayList" src="<?php echo $rows['location']"
       width="300" height="75" loop="false" hidden="false"
       autostart="true">
</embed>
}

现在你的嵌入看起来像

 <embed name="PlayList" src="Playlist.m3u"
        width="300" height="75" loop="false" hidden="false"
        autostart="true">
 </embed>