ECSHOP首页显示商品总数和本月更新数的方法
发布:smiling 来源: PHP粉丝网 添加日期:2015-09-28 16:19:30 浏览: 评论:0
1、首先修改 /index.php 找到:
assign_dynamic('index');
在它后边添加一些代码:
- $sql="select count(*) as goods_all from ". $ecs->table('goods'); //商品总数
- $smarty->assign('goodsnum_all',$db->getOne($sql));
- $time_month=mktime(0,0,0,date('m')-1,1,date('Y')); //phpfensi.com
- $sql="select count(*) as goods_month from ". $ecs->table('goods') ." where last_update >= " . $time_month; //本月更新数
- $smarty->assign('goodsnum_month',$db->getOne($sql));
2、打开首页模板文件 index.dwt,在合适的地方调用,调用代码为:
本商城共有商品 {$goodsnum_all} 件,本月更新 {$goodsnum_month} 件
Tags: ECSHOP商品总数 ECSHOP本月更新数
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)