【编者按】:网学网网络知识为您提供Ecshop首页主广告修改为:JS 并带有排序功能参考,解决您在Ecshop首页主广告修改为:JS 并带有排序功能学习中工作中的难题,参考学习。
下面讲一下如何把Ecshop网店系统的首页主广告修改为JS并带有排序功能,先来看看效果吧:
修改方法如下:
1、把library/index_ad.lbi 里代码替换成以下代码:
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<script type="text/javascript" src="/uploadfile/201406/29/ED132238232.gif" alt="请稍候..." /></div><!--载入画面(可删除)-->
<div class="pic"><!--图片列表-->
<ul>
<!--{foreach from=$index_adlist item=ads}-->
<li><a target="_blank" href="{$ads.url}"><img src="{$ads.content}" alt="{$ads.ad_name}" /></a></li><!--{/foreach}-->
</ul>
</div>
</div>
2、修改index.php
在“?>”前加上以下代码:
function get_index_ad(){
$sql = ''SELECT ad_type,content,ad_name,url,orderid FROM '' . $GLOBALS[''ecs'']->table("ad_custom") .''ORDER BY orderid ASC'' ;
$res = $GLOBALS[''db'']->getAll($sql);
$ads = array();
foreach ($res AS $adx => $row)
{
$ads[$adx][''ad_type''] = $row[''ad_type''];
$ads[$adx][''content''] = $row[''content''];
$ads[$adx][''url''] = $row[''url''];
$ads[$adx][''ad_name''] = $row[''ad_name''];
}
return $ads;
}
在这段代码
$smarty->assign(''shop_notice'',Ecshop首页主广告修改为:JS 并带有排序功能_网学 网学推荐
免费论文
原创论文
文章排行榜
· 理解防火墙 屏蔽外界攻击 · 安装防火墙的十二个注意事项 · 企业中使用无线局域网如何进行安全 · 安装防火墙注意事项 · Cisco(思科)路由器上如何防止DDoS · 设定路由访存表防止黑客对防火墙发 · IP网络安全管理系统探讨 · 全面了解交换机漏洞 保护网络核心 · 层层设防保护VoIP安全 抵御隔墙之 · 简述常见黑客入侵方法以及工具防范 · 入侵检测(IDS)存在的问题及发展趋势 · 浅析防火墙与路由器的安全配置 · 实例讲解Oracle监听口令及监听器安 · 部署网络防火墙策略的十六条守则 · 部署网络防火墙策略 · 企业可轻松避免的十大安全地雷 · 计算机不能进安全模式的解决办法 · 无法格式化的U盘修复方法 CFG[''shop_notice'']); // 商店公告版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号
后加入
$smarty->assign(''index_adlist'', get_index_ad());
3、在“ecs_ad_custom”表下增加一个字段“orderid”
4、修改admin/flashplay.php
5、修改后台模板 admin/templates 下的三个文件
第4与5步的修改打包下载地址:http://www.028wz.net/mf.zip
本文摘自:028工作室