|
插件:论坛点歌台
原作者:忘了
修改:笨笨啊
修改内容:时间、头部导航、忘了
演示:http://www.zjoubbs.com
修改方法:
1.将文件复制到pw目录下
2.打开template/模板/index.htm
找到
<!--<?php print <<<EOT
-->
替换为
<!--
<?
$songdetail=readover("data/songdata/songcache.htm");/*点歌代码*/
print <<<EOT
-->
找到
<!--
EOT;
foreach($catedb as $key=>$cate){
if($forumdb[$cate[fid]]){
if($cate[across]){print <<<EOT
-->
在其前面加上
<!-- 点歌模版 -->
<script>
function popwin2(id,path)
{ window.open("songs.php?action=song_st&dgno="+id,"","height=470,width=390,resizable=no,scrollbars=no,status=no,toolbar=no,menubar=no,location=no");
}
</script>
<table width=$tablewidth border=0 $i_table align=center cellspacing=1 cellpadding=1>
<tr bgcolor=$forumcolortwo>
<td class=head height=25>
<b>-=></b><a class=headurl>温馨点歌台</a>-----<a href=song.php?action=user class=headurl><font color=ffff00>我要点歌</font></a>-----<a href=song_admin.php class=headurl>管理员入口</a></td></tr>
<tr>
<td style=background-image:url("$imgpath/$stylepath/background.gif") width=62% bgcolor=$forumcolorone>
<marquee scrollamount=1 direction=up height=70 onmouseover=this.stop(); onmouseout=this.start();>
$songdetail
</marquee>
</td></tr>
</table>
<!-- 点歌模版 -->
OK
消费金额在song.php里改。论坛点歌台.rar
|
一共有 68 条评论
Quote:
时间,时间
到了一定的时间会自动把过期的清除掉的
我论坛上运行了很久了,没有出现越来越多的现象
改进方法:
打开song.php
找到:
$t_date=date("Ymd",$curtime);
$flag=0;
for($i=0;$i<$count;$i++){
$detail=explode("|", trim($songarray[$i]));
$dates=date("Ymd",$detail[3]);
$dates2=$dates+$howdays;
if($t_date<= $dates2) {
$flag=1;
$timeds=date("Y-m-j H:i",$detail[3]);
$songdetail.="<a href=javascript:popwin2('$detail[3]',410)><font color=blue>$detail[1]</font>点了一首<font color=green>《$detail[5]》</font>送给<font color=RED>$detail[2]</font>听,并想对 $detail[2] 说: <font color=RED>$detail[6]</font></a>($timeds)<br>";
}else {
if($flag!=1) $songdetail="最近$howdays 天内没有点歌信息!";
break;
}
}
替换成:
$songdetail='';
if ($count){
for($i=0;$i<$count;$i++){
$detail=explode("|", trim($songarray[$i]));
$timeds=date("Y-m-j H:i",$detail[3]);
$songdetail.="<a href=javascript:popwin2('$detail[3]',410)><font color=blue>$detail[1]</font>点了一首<font color=green>《$detail[5]》</font>送给<font color=RED>$detail[2]</font>听,并想对 $detail[2] 说: <font color=RED>$detail[6]</font></a>($timeds)<br>";
}
}else {
$songdetail="最近$howdays 天内没有点歌信息!";
}
Quote:
手误:)
这个不对,应该是index.htm