ECSHOP首页调用最新评论|增加显示评论时间|商品图片和名称

ECSHOP知识15年前 (2009)发布
129 0

1、在库目录里增加一个文件:index_comments.lbi 里面有内容如下:

 
<?php
if(!function_exists("get_comments")){
function get_comments($num)
{
   $sql = ‘SELECT a.*,b.goods_id,b.goods_thumb,b.goods_name FROM ‘. $GLOBALS[‘ecs’]->table(‘comment’) .
            ‘ AS a,’. $GLOBALS[‘ecs’]->table(‘goods’) .’AS b WHERE a.status = 1 AND a.parent_id = 0 and a.comment_type=0 and a.id_value=b.goods_id ‘.
            ‘ ORDER BY a.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][‘add_time’]       = local_date($GLOBALS[‘_CFG’][‘time_format’], $row[‘add_time’]);
   $comments[$idx][‘content’]       = $row[‘content’];
   $comments[$idx][‘id_value’]       = $row[‘id_value’];
   $comments[$idx][‘goods_thumb’]  = get_image_path($row[‘goods_id’], $row[‘goods_thumb’], true);
   $comments[$idx][‘goods_name’]       = $row[‘goods_name’];
  }
  return $comments;
}
}
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!–数据调用-最新评论开始 –>      
<?php
   $this->assign(‘my_comments’,get_comments(6)); // 数据条数
?>
<!–{foreach from=$my_comments item=comments}–>
<table width="546" border="0" cellspacing="0" cellpadding="0" style=" border-bottom:1px #ccc dashed;">
  <tr>
    <td width="73" height="70" align="center"><a href="goods.php?id={$comments.id_value}" target="_blank"><img src="{$comments.goods_thumb}" border="0" width="60" height="60" style=" border:1px #CCCCCC solid;"/></a></td>
    <td width="473" align="left" valign="top">
<div style="height:3px; overflow:hidden;">&nbsp;</div>
<div><a href="goods.php?id={$comments.id_value}" target="_blank"><font style=" color:#FF0000; font-size:14px;">{$comments.goods_name}</font></a></div>
<div><img src="../images/pl.gif" width="38" height="19" align="absmiddle">{$comments.content|truncate:100:""}</div>
<div style="color:#999999;">时间:{$comments.add_time}</div>
</td>
  </tr>
</table>
   <!–{/foreach}–>

然后首页调用这个库就可以了

  1. <!– #BeginLibraryItem "/library/index_comments.lbi" –>  <!– #EndLibraryItem –>
© 版权声明

相关文章

暂无评论

  • asd
    asd 游客

    asd

    asd 于 2009-10-28 0:50:53 回复

    asd

    回复
  • asd
    asd 游客

    asd

    回复
  • 受用了
    受用了 游客

    受用了,谢谢。

    回复