首页调用评论 图片怎么掉用过来

2016-07-07 16:19 来源:www.chinab4c.com 作者:ecshop专家

ECSHOP 2.7我用的是 360那个模板建立个新库文件 代码如下:
<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;
}

$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(10)); // 6
?>
<div class="modTitle clearfix">
<span class="left"></span><span class="right"></span>
<div class="f_l">最新热评</div>

</div>
<div class="modBox">



<ulclass="promotion_info">
<!--{foreach from=$my_comments item=comments}-->

<li>·<a href="goods.php?id={$comments.id_value}" target="_blank">{$comments.content|truncate:60:""}</a></li>

<!--{/foreach}-->
</ul>

</div>
我这个代码没调用 图片与名字功能版主给我改改 让它能调用对应的产品图片与名字
先谢谢

回答:
自己先顶下

需要更改程序,如果程序无输出,那么前台是不能调用的