Combine admob with other ad networks

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • khan
    replied
    then just change this line
    PHP Code:
     $mob_alternate_link "<a class='' href='http://blog.hitnhot.com'>Evaan's Blog</a>"
    to
    PHP Code:
    $mob_alternate_link mobads2(); 

    Leave a comment:


  • slowy
    replied
    how to replace it with another ad network.
    if i had another function called mobads2
    how 2 replace it with admob?

    Leave a comment:


  • khan
    replied
    Originally posted by slowy View Post
    its showing blank page
    The uses is,
    PHP Code:
    echo mobads(); 

    Leave a comment:


  • slowy
    replied
    Originally posted by khan View Post
    PHP Code:
    <?
    #ADMOB USES MODIFIED FOR USING ANOTHER COMPANYS AD WHEN ADMOB AD ISNT SHOWING.#
    function mobads()
    {
    $mob_mode = "live";
    $admobcode = "UR ADMOB ID/CODE";
    $mob_alternate_link = "<a onclick="_gaq.push(['_trackEvent', 'Outgoing', 'blog.hitnhot.com', '']);" rel='nofollow' class='' href='http://blog.hitnhot.com'>Evaan's Blog</a>";
    $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;
    }
    ?>
    its showing blank page

    Leave a comment:


  • khan
    replied
    Originally posted by Petar Raznatovic View Post
    Anybody ?
    PHP Code:
    <?
    #ADMOB USES MODIFIED FOR USING ANOTHER COMPANYS AD WHEN ADMOB AD ISNT SHOWING.#
    function mobads()
    {
    $mob_mode = "live";
    $admobcode = "UR ADMOB ID/CODE";
    $mob_alternate_link = "<a class='' href='http://blog.hitnhot.com'>Evaan's Blog</a>";
    $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;
    }
    ?>

    Leave a comment:


  • Petar Raznatovic
    replied
    Anybody ?

    Leave a comment:


  • Petar Raznatovic
    replied
    Combine admob with other ad networks

    I thought something like this:
    Code:
    if (isset($admob_request)) echo $admob_request;
    else $other_ad_request;
    Last edited by Petar Raznatovic; 22.05.11, 11:22.

    Leave a comment:


  • kei_ki7
    replied
    Do you mean Ad Rotator?

    Leave a comment:


  • Combine admob with other ad networks

    Hello, can somebody tell me is allowed to combine admob with other ad networks, beause of its fillrate? Thanks.
Working...
X