[分享]ECSHOP在商城底部调试商品总数和本月更新数量

2016-07-07 14:56 来源:www.chinab4c.com 作者:ecshop专家



1.首先找到
index.php
  1. assign_dynamic('index');
复制代码
在下面添加代码
  1. $sql="select count(*) as goods_all from ". $ecs->table('goods'); //商品总数
  2. $smarty->assign('goodsnum_all',$db->getOne($sql));
  3. $time_month=mktime(0,0,0,date('m')-1,1,date('Y'));
  4. $sql="select count(*) as goods_month from ". $ecs->table('goods') ." where last_update >= " . $time_month; //本月更新数
  5. $smarty->assign('goodsnum_month',$db->getOne($sql));
复制代码
模板中自定义位置:
  1. 本商城共有商品 {$goodsnum_all} 件,本月更新 {$goodsnum_month} 件
复制代码



不懂的可以加交流群,免费交流解答。QQ群180035291

回答:
没人顶、、、