在index.php中找- $threads = $posts = $todayposts = $fids = $announcepm = 0;
复制代码
在下面加入
- //今日发贴排行
- $tomonth=date(n);
- $todate=date(j);
- $toyear=date(Y);
- $time=mktime(0,0,0,$tomonth,$todate,$toyear);
- $query=$db->query("select count(pid) as num,authorid,author from $tablepre"."posts where dateline>=$time group by authorid order by num desc limit 0,10");
- while($result=$db->fetch_array($query)){
- $poststar.="<img src=images/bullet.gif border=0><a href=viewpro.php?uid=".$result[authorid].">".$result[author]."</a><font align=right>".$result[num]."</font><br>";
- }
- //今日发贴排行
复制代码
然后在你的toplist.htm中找
- <!--{loop $new_hot_threadlist $mthread}-->
- <img src="images/bullet.gif" border="0"><a href="viewthread.php?tid=$mthread[tid]" $mthread['highlight'] title="热门话题 {LF}所在论坛: $mthread[forumname]{LF}主题标题: $mthread[subject]{LF}主题作者: $mthread[author]{LF}发表时间: $mthread[date]{LF}浏览次数: $mthread[views] 次{LF}回复次数: $mthread[replies] 次{LF}最后回复: $mthread[lastreplytime]{LF}{lang lastpost}: $mthread[lastposter]" >$mthread[view_subject]</a><br>
- <!--{/loop}-->
复制代码 把它替换成
这样应该就可以了!LZ试试看吧,希望能够帮得上你!^_^
[ 本帖最后由 haoyinji 于 2007-5-24 10:46 编辑 ] |