Is there a script that will alternate one adsense pub id with another on the same page? So with each page load, one or the other shows.... 50/50 i have site i'm runing with a friend it would be easier if we could both use our own adsense accounts.
if you use php you can simply do : <? if (rand(1,2) == 1) { $adsenseid = "pub-123456789"; } else { $adsenseid = "pub-987654321"; } ?> Code (markup): Then you have $adsenseid which is either yours or your friend's adsense ID so you can insert it in the adsense code: <script type="text/javascript"><!-- google_ad_client = "<?= $adsenseid ?>"; google_ad_width = 468; google_ad_height = 60; google_ad_format = "468x60_as"; etc... Code (markup):
Having multiple adsense publisher id on the same website is allowed by google ... its advisable to get the permission of the other publisher before doing so. I am not sure about having ad units for multiple publishers on the same page. I mailed google recently .. waiting for the reply.
it will still be the same, say you have 3 publisher, one can display 4, does that mean you can display 12 ads on one page ?? NO!
Rewlie, they are more than last week and less than next week, sign ups are pouring in. Google also allows to display several IDs on one page, but the 3 ads + adlink + 2 search + 4 referrals limit on one page is still valid.
senserely : looking to be your partner, but my project isn't release yet, still under Google clarification, it's also an ad revenue sharing, but more complex process, still playing with the db, i let you know once it's ready.
Is this for an HTML or PHP page? I just happen to code a revenue sharing system for vBulletin yesterday. I may have a tip or two I can give ya.