ecshop获取自定义广告位置广告图片函数
ecshop获取自定义广告位置广告图片函数
操作方法
- 01
/** * 获取自定义广告位置广告图片 * * @access public * @return string */ function get_ads($row,$pos){ $sql = "select * from ecs_ad where position_id = $pos limit $row"; $ads = $GLOBALS['db']->getAll($sql); return $ads; }
赞 (0)