Mobile app version of vmapp.org
Login or Join
Frith620

: How can I show multiple ad networks on my site? I am not sure Google Adsense is the right ad network for me. I'd like to experiment with a few other options. I would like to setup another

@Frith620

Posted in: #Advertising

I am not sure Google Adsense is the right ad network for me. I'd like to experiment with a few other options.

I would like to setup another ad network, say Project Wonderful, and have my site display 50% of its ads through Adsense, and 50% through PW. What's the simplest way to achieve this?

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Frith620

3 Comments

Sorted by latest first Latest Oldest Best

 

@Steve110

If you can't implement this in your server side code, you can use something like DoubleClick for Publishers (DFP) Small Business. It's a free hosted ad serving solution and will allow you to do exactly what you want.

10% popularity Vote Up Vote Down


 

@Megan663

There are a number of 3rd parties that help manage and optimize advertising on your website:


Pubmatic.com
YieldBuild.com
RubiconProject.com
Admeld.com


The benefit of using these services is that 1) you only need to implement one set of tags on your website, and 2) they dynamically optimize your ad placements to select the ad network that will pay you the most revenue.

10% popularity Vote Up Vote Down


 

@Deb1703797

The simplest way is to use your server-side scripting language to randomly display either ad network one or ad network 2.

With PHP, you could do something like:

$random = array_rand(array('Google', 'Wonderful'), 1);

if ($random[0] == 'Google'){
//Display the Google ad code here
} else {
//Display the Project Wonderful code here
}


However, it's important to check the Terms of Use for each ad provider to see if the ad networks are compatible. Google, in particular, is a little feisty about what kind of ads they want used in conjunction with AdSense.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme