ecshop添加内页幻灯片方法

3230阅读 1评论2013-06-26 dearyzy
分类:PHP

添加内页幻灯片

在模板对应的php文件中赋值的地方写入以下代码

$smarty->assign(‘flash_theme’, $_CFG['flash_theme']); // Flash轮播图片模板

/* 首页主广告设置 */

$smarty->assign(‘index_ad’, $_CFG['index_ad']);

if ($_CFG['index_ad'] == ‘cus’)

{

$sql = ‘SELECT ad_type, content, url FROM ‘ . $ecs->table(“ad_custom”) . ‘ WHERE ad_status = 1′;

$ad = $db->getRow($sql, true);

$smarty->assign(‘ad’, $ad);

}

然后在内页模板中插入和首页模板同样的幻灯片代码即可实现内页也显示幻灯片。

上一篇:Linux系统 进程管理命令
下一篇:CentOS5下挂载其他硬盘上lvm分区方法