求助关于首页调用最新商品评论

2016-07-07 15:06 来源:www.chinab4c.com 作者:ecshop专家

小弟初次使用ECSHOP,在首页调用商品评论时按老鸟们教的方法做了一下,结果出现了以下的情况。如附件图片所示。
在我建的一个库文件中所填代码如下:
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<?php
if(!function_exists("get_comments")){
function get_comments($num)
{
$sql = 'SELECT * FROM ecs_comment '.
' WHERE status = 1 AND parent_id = 0 and comment_type=0 '.
' ORDER BY add_time DESC';
if ($num > 0)
{
$sql .= ' LIMIT ' . $num;
}
//echo $sql;

$res = $GLOBALS['db']->getAll($sql);
$comments = array();
foreach ($res AS $idx => $row)
{
$comments[$idx]['user_name'] = $row['user_name'];
$comments[$idx]['content'] = $row['content'];
$comments[$idx]['id_value'] = $row['id_value'];
}
return $comments;
}
}
?>
<!--数据调用-最新评论开始 -->
<?php
$this->assign('my_comments',get_comments(20)); // 6代表会条数据
?>
<UL ><!--{foreach from=$my_comments item=comments}-->
<LI >【客户评论】: <A
href="goods.php?id={$comments.id_value}" target=“blank”> {$comments.title}</A> <BR>
{$comments.content|truncate:90:"..."}
</LI>
<!--{/foreach}-->
</UL>
</div>
</div>


小弟实是找不到其中原因,只知可能与评论的标题可能有关。{$comments.title} 可具体怎么改就不知道啦。还请各位老鸟,斑竹们指教呀。。先谢谢啦!!

回答:
唉,,,没人会么??管理员同学,请帮忙解决下呀。

顶上去。。。。。。高手都不在???

唉,为啥没人来回答呀。。。。

就这样,没人愿意助我们哦!

不能把商品名称,评论日期也一并调用吗?