$i="0";
while($entry=$d->read()){
$i=$i 1; if($i>2){//大于2的目的是去掉当前目录的".",和表示前一个" />
首页 > PHP

PHP实现网上点歌(二)

时间:2009-04-27 14:18:31  作者:chinaitlab  我要投稿
Linux初探欢迎您的投稿,投放方法请点击这里查看,我们会定期赠送精美小礼品给优秀的投稿作者。海纳百川 取则行远!LinuxGoo欢迎您的到来。
midif2.php
<?
$d=dir("./dir");//得到dir目录对象
$i="0";
while($entry=$d->read()){
$i=$i 1; if($i>2){//大于2的目的是去掉当前目录的".",和表示前一个......
midif2.php
<?
$d=dir("./dir"); //得到dir目录对象
$i="0";
while($entry=$d->read()){
$i=$i 1;
if($i>2){ //大于2的目的是去掉当前目录的".",和表示前一个目录的".."
$wq[]=$entry; //把目录明细放入$wq数组中
}
}
$d->close(); //关闭
?>
<html>
<head>
<title>List</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script LANGUAGE="javascript">
<!--
var onecount;
onecount=0;
subcat = new Array();
<?
$onecount="0";
for($j=0;$j<count($wq);$j ){
$dir="./dir/".$wq[$j];
$d=dir($dir); //得到每一个dir目录下的每一个目录对象
$i="0";
while($entry=$d->read()){
$i=$i 1;
if($i>2){
?>
subcat[<?echo $onecount;?>] = new Array("<?echo $entry;?>","<?echo $wq[$j];?>","<?echo $entry;?>");
<?
$onecount=$onecount 1;
}
}
$d->close();
}
?>
onecount=<?echo $onecount;?>;

function changelocation(locationid)
{
document.myform.song.length = 0;
var locationid=locationid;
var i;
for (i=0;i < onecount; i )
{
if (subcat[i][1] == locationid)
{
document.myform.song.options[document.myform.song.length] = new Option(subcat[i][0],subcat[i][2]);
}
}

}
//-->
</script>
</head>
<body>
<form method="post" action="midif1.php" name="myform" target="f1">
<select name="zj" onChange="changelocation(document.myform.zj.options[document.myform.zj.selectedIndex].value)">
<?for($i=0;$i<count($wq);$i ){?>
<option value="<?echo $wq[$i];?>"><?echo $wq[$i];?></option>
<?}?>
</select>
<select name="song">
<option selected value=""></option>
</select>
<input type="submit" name="play" value="播放">
<input type="button" name="stop" value="停止" onclick="javascript:parent.f1.location.href='midif1.php'">
如果您需转载 PHP实现网上点歌(二),请注明来自LinuxGoo.com,其版权归原作者所有。请广大网友留言时遵纪守法,使用文明用语。如果您在应用中有什么问题,请在下面留言,我们会尽快解答。
来顶一下
近回首页
返回首页
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
相关文章
栏目热门