如何在首页调用后台指定的广告?

2016-07-07 15:18 来源:www.chinab4c.com 作者:ecshop专家

这是我在网上找到的
  1. function get_adv($type,$id)
  2. {
  3. $sql = "select ap.ad_width,ap.ad_height,ad.ad_name,ad.ad_code,ad.ad_link from ".$GLOBALS['ecs']->table('ad_position')." as ap left join ".$GLOBALS['ecs']->table('ad')." as ad on ad.position_id = ap.position_id where ad.ad_name='".$type."_".$id."' and ad.media_type=0 and UNIX_TIMES**P()>ad.start_time and UNIX_TIMES**P()<ad.end_time and ad.enabled=1";
  4. $res = $GLOBALS['db']->getRow($sql);
  5. if($res)
  6. return"<a href='".$res['ad_link']."' target='_blank'><img src='zuimoban/afficheimg/".$res['ad_code']."' width='".$res['ad_width']."' height='".$res['ad_height']."' /></a>";
  7. else
  8. {
  9. return "";

  10. }
  11. }
  12. 本文转自最模板,原文地址:http://www.zuimoban.com/php/ecshop/1041.html
复制代码
函数这些我都加好了,只是不知道后台如何添加广告,跟对方联系,居然要100大洋,只要求助大家了,好心人帮帮忙,小弟多多少少懂点程序!

回答:
不需要这么复杂啊。在模板中设计好广告位就可以