服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > ecshop教程 >

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

时间:2010-11-13 17:10来源: 作者: 点击:
在ECSHOP首页显示商品总数和本月更新数

经常在论坛里看到有人问到类似问题,今天就把方法共享一下。

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} 件

 

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------