首页 > 运营 > 帮助中心 > 正文

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

2019-10-17 22:34:19
字体:
来源:转载
供稿:网友
点评:正在准备模板大赛的作品,修改这个模块的代码时,发现其指数不能正常显示,自己顺手就改一下,可能不官方,但是能用.下面直接贴代码,有需要的就拿吧.
 
 

复制代码
代码如下:

{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
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表