Originally posted by Petar Raznatovic
View Post
Combine admob with other ad networks
Collapse
X
-
Originally posted by slowy View Postif i m changing admob's text link like this
PHP Code:$ret = "<a class='' href='$mob_ad_link'>FREE MOBILE DOWNLOADS</a><br />";
and admob's fill rate increased
y is it so????
Comment
-
Originally posted by khan View Postif they found you that u are changing link name, your a/c may be banned. jara sambhalke bro...
Comment
-
if i m including a php in alternative link then why both ads r showing
PHP Code:<?
#ADMOB USES MODIFIED FOR USING ANOTHER COMPANYS AD WHEN ADMOB AD ISNT SHOWING.#
function mobads()
{
$mob_mode = "live";
$admobcode = "0000000000000000";
$mob_alternate_link = include("mobgold1.php");
$mob_ua = urlencode(getenv("HTTP_USER_AGENT"));
$mob_ip = urlencode($_SERVER['REMOTE_ADDR']);
if($mob_mode=='live')
$mob_m = "&m";
$mob_url = 'http://ads.admob.com/ad_source.php?s='.$admobcode.'&u='.$mob_ua.'&i='.$mob_ip.$mob_m;
@$mob_ad_serve = fopen($mob_url,'r');
if($mob_ad_serve)
{
while(!feof($mob_ad_serve))
$mob_contents .= fread($mob_ad_serve,1024);
fclose($mob_ad_serve);
}
$mob_link = explode("><",$mob_contents);
$mob_ad_text = $mob_link[0];
$mob_ad_link = $mob_link[1];
if(isset($mob_ad_link)&& ($mob_ad_link !=''))
$ret = "<a class='' href='$mob_ad_link'>$mob_ad_text</a><br />";
else
$ret = $mob_alternate_link;
return $ret;
}
echo mobads();
?>
Comment
-
Its very easy. You have to put the adcode of the other network you wish to use in a function like otherad() ... eg. Instead of:
echo $contents;
Use
return $contents; // In THE function.
after setting this, in admob's code, at the end, check like this:
if(strstr($ad_contents, 'href')) return $ad_contents;
else return otherad();
Comment
Comment