在ECSHOP首页显示商品总数和本月更新数-站长杂谈下载

在ECSHOP首页显示商品总数和本月更新数

来自版块: 站长杂谈发表于: 2015-8-8 23:54:51
23201
0
如本资源下载地址失效,请点击此处进行反馈
开通本站Svip会员,全站资源免费下
经常在论坛里看到有人问到类似问题,今天就把方法共享一下。9 H) C/ t  d. g- h1 e+ ?2 y' K
6 R: z4 H; j: w, w
1)、首先修改 /index.php % Z$ T+ H, p! Z0 B
找到
assign_dynamic('index');
在它后边添加一些代码
$sql="select count(*) as goods_all from ". $ecs->table('goods'); //商品总数
% T3 l  B5 A$ W $smarty->assign('goodsnum_all',$db->getOne($sql));; B, t" k& t0 \
$time_month=mktime(0,0,0,date('m')-1,1,date('Y'));
1 c' \0 s3 {0 k& m7 h9 U) f $sql="select count(*) as goods_month from ". $ecs->table('goods') ." where last_update >= " . $time_month; //本月更新数4 l# c& P+ V2 E
$smarty->assign('goodsnum_month',$db->getOne($sql));

$ X3 i! N4 o8 q+ @7 M: k; V7 Q  x5 K
2)、打开首页模板文件 index.dwt,在合适的地方调用,调用代码为
本商城共有商品 {$goodsnum_all} 件,本月更新 {$goodsnum_month} 件
! \& x  |& n2 g8 l5 x  x# j

全部评论 0

您需要登录后才可以回帖 立即登录
登录
0
0
0
返回顶部