好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

PHPCMS2008 SP4 心情排行指数不显示的解决办法_php

正在准备模板大赛的作品,修改这个模块的代码时,发现其指数不能正常显示,自己顺手就改一下,可能不官方,但是能用.下面直接贴代码,有需要的就拿吧.


复制代码

代码如下:


{loop $infos $r}
<?php
$i="n".$r[id];
$k=$r[id];
?>
<div class="rank_list">
<h3><img src="{$r[img]}" width="21" height="21" /> {$r[title]}</h3>
<ul>
{get sql="select c.url,c.title,c.style,m.n$r[id] from phpcms_content c,phpcms_mood_data m where c.contentid=m.contentid and m.moodid='$moodid' and m.n$r[id]>0 order by m.n$r[id] desc" rows="6"}
<li>{if $r[$i]}<span class="right">({$r[$i]})</span>{/if}<a href="{$r[url]}" target="_blank"><font>{$r[title]}</font></a></li>
{/get}
</ul>
</div>
{if $k%2==0}
<div class="b12"></div>
{/if}
{/loop}


模板位于:mood/rank.html

查看更多关于PHPCMS2008 SP4 心情排行指数不显示的解决办法_php的详细内容...

  阅读:93次