首页 > 其他 > 详细

ecshop 新增广告代码

时间:2015-10-24 12:46:34      阅读:476      评论:0      收藏:0      [点我收藏+]
//读取广告
function get_ad_id($ad_id){    //读取指定ad_id广告
    $sql = select * from . $GLOBALS[ecs]->table(ad) .where ad_id = .$ad_id;
    $result = $GLOBALS[db]->GetAll($sql);
    $result[0][url] = http://localhost.url_domain().affiche.php?ad_id=.$result[0][ad_id].&from=&uri=.$result[0][ad_link];
    return $result;
}
function get_ad_class($position_id){    //读取分类下所有广告
    $sql = select * from . $GLOBALS[ecs]->table(ad) .where position_id = .$position_id;
    $result = $GLOBALS[db]->GetAll($sql);
    foreach($result as $k=>$v){
        $result[$k][url] = http://localhost.url_domain().affiche.php?ad_id=.$v[ad_id].&from=&uri=.$v[ad_link];
        
    }
    return $result;    
}

 

ecshop 新增广告代码

原文:http://www.cnblogs.com/wesky/p/4906479.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!