zoukankan      html  css  js  c++  java
  • ecshop首页调用评论及图片

    1、在library文件夹中建立一个名为index_comment.lbi文件

    2、输入以下代码

     1 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
     2 <?php
     3 if(!function_exists("get_comments")){
     4 function get_comments($num)
     5 {
     6    $sql = 'SELECT a.*,b.goods_id,b.goods_thumb,b.goods_name FROM '. $GLOBALS['ecs']->table('comment') .
     7             ' 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 '.
     8             ' ORDER BY a.add_time DESC';
     9 if ($num > 0)
    10 {
    11    $sql .= ' LIMIT ' . $num;
    12 }
    13 //echo $sql;
    14         
    15 $res = $GLOBALS['db']->getAll($sql);
    16 $comments = array();
    17 foreach ($res AS $idx => $row)
    18 {
    19    $comments[$idx]['add_time']       = local_date($GLOBALS['_CFG']['time_format'], $row['add_time']);
    20    $comments[$idx]['content']       = $row['content'];
    21    $comments[$idx]['id_value']       = $row['id_value'];
    22    $comments[$idx]['goods_thumb'] = get_image_path($row['goods_id'], $row['goods_thumb'], true);
    23    $comments[$idx]['goods_name']       = $row['goods_name'];
    24 }
    25 return $comments;
    26 }
    27 }
    28 ?>
    29 <?php
    30    $this->assign('my_comments',get_comments(8)); // 数据条数
    31 ?>
    32 <div>
    33   <h1> 顾客评论 </h1>
    34   <div>
    35     <!-- {foreach from=$my_comments item=comments} -->
    36     <dl>
    37       <dt><a href="goods.php?id={$comments.id_value}" target="_blank"><img src="{$comments.goods_thumb}" alt="" /></a></dt>
    38       <dd><a href="goods.php?id={$comments.id_value}" style="color:#FF6400; font-weight:bold">名称:{$comments.goods_name}</a></dd>
    39       <dd>{$comments.content|truncate:100:""}</dd>
    40       <dd>时间:{$comments.add_time}</dd>
    41     </dl>
    42     <!-- {/foreach} -->
    43   </div>
    44 </div>
    View Code

    3、在index.dwt文件的评论的地方加入<!-- #BeginLibraryItem "/library/pl_y.lbi" -->  <!-- #EndLibraryItem -->

    完成

  • 相关阅读:
    springboot文件上传: 单个文件上传 和 多个文件上传
    Eclipse:很不错的插件-devStyle,将你的eclipse变成idea风格
    springboot项目搭建:结构和入门程序
    POJ 3169 Layout 差分约束系统
    POJ 3723 Conscription 最小生成树
    POJ 3255 Roadblocks 次短路
    UVA 11367 Full Tank? 最短路
    UVA 10269 Adventure of Super Mario 最短路
    UVA 10603 Fill 最短路
    POJ 2431 Expedition 优先队列
  • 原文地址:https://www.cnblogs.com/iz100/p/3182380.html
Copyright © 2011-2022 走看看