您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程

在ecshop首页实现显示商品总数和本月更新数量的方法

初丹2023-11-30 21:18:09ecshop商城教程已有人查阅

导读1)、首先修改 /index.php找到;2)、打开首页模板文件 index.dwt,在合适的地方调用,调用代码为本商城共有商品 {$goodsnum_all} 件

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'));
$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} 件

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

本栏推荐

相关标签