Quote:
Originally Posted by DistributorTalk
How would the code look if I wanted to call 468x60 banners, and smaller ones at the same time on 2 different areas on a page? I have the large banners showing up but not sure what I need to add to call the small ones.
|
Each banner requires a different call of the view_raw function
PHP Code:
if (@include(getenv('DOCUMENT_ROOT').'/phpads/phpadsnew.inc.php'))
{
if (!isset($phpAds_context))
{
$phpAds_context = array();
$phpAds_raw = view_raw ('zone:1', 0, '', '', '0', $phpAds_context);
$phpAds_context2 = array();
$phpAds_raw2 = view_raw ('zone:2', 0, '', '', '0', $phpAds_context2);
}
}
That would do zones 1 & 2. A third zone would require a third call.