- 在库目录里增加一个文件:index_comments.lbi 里面有内容如下:
- <?php
- if(!function_exists(“get_comments”)){
- function get_comments($num)
- {
- $sql = ‘SELECT * FROM ‘. $GLOBALS[‘ecs’]->table(‘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][‘add_time’] = $comments[$idx][‘add_time’] = local_date
- ($GLOBALS[‘_CFG’][‘time_format’], $row[‘add_time’]);
- $comments[$idx][‘user_name’] = $row[‘user_name’];
- $comments[$idx][‘content’] = $row[‘content’];
- $comments[$idx][‘id_value’] = $row[‘id_value’];
- }
- return $comments;
- }
- }
- ?>
- <meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″>
- <!–数据调用–最新评论开始 –>
- <?php
- $this->assign(‘my_comments’,get_comments(10)); // 10条数据
- ?>
- <div class=”comments”>
- <!–{foreach from=$my_comments item=comments}–>
- <div class=”t_l f_l”><a href=”goods.php?id={$comments.id_value}” target=”_blank”>
- {$comments.content|truncate:15:””}</a></div><div class=”d_r f_r”>时间:
- {$comments.add_time}</div>
- <!–{/foreach}–>
- </div>
- 首页调用这个库文件就OK了.
zhanceo
诚乃立身之本、信为道德之基
常见问题
- 本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。
相关文章
猜你喜欢
- ecshop教程:安装遇到安装数据失败的解决方法 2021-09-07
- ecshop教程:显示某商品销售累计效果的实现代码 2021-09-07
- ecshop后台上传商品图片提示图片格式不正确的解决方法 2021-09-07
- 关于ECSHOP模板架设的服务器php版本过高报错的解决方法集合 2021-09-07
- ecshop退出登录会清空购物车的bug优化最佳解决方法 2021-09-07
- 强化ECSHOP搜索功能 -随机关键词+拼音搜索+分词搜索 2021-09-07
- ecshop二次开发网页模板之常用函数汇总 2021-09-07
- ecshop教程:编辑器kindeditor图片上传添加水印功能 2021-09-07
- ecshop教程:解决会员找回密码无法使用的BUG 2021-09-07
- ecshop网站模板在线QQ客服代码详细分析 2021-09-07