PDA

View Full Version : Adsense Ad Rotator?


Selena
June 16th, 2007, 09:38 PM
Anyone know where I can get a rotator that can be used to rotate adsense codes?

I just need a simple script hopefully. Anyone got anything I could use.

Rain
June 17th, 2007, 02:45 AM
Try http://www.openads.org , it's not so simple but its great :)

marcowitsch
June 17th, 2007, 02:48 PM
or use the rotator thats integrated in adsense? rotating different colors etc

Greg-J
June 18th, 2007, 03:52 PM
Do you want the ad sizes to rotate or the colors, or both?

marshall_26
June 18th, 2007, 08:01 PM
how simple???



$ads[] = 'ad1';
$ads[] = 'ad2';
$ads[] = 'ad3';
$ads[] = 'ad4';
$ads[] = 'ad5';

srand ((double) microtime() * 1000000);
$random_ad = rand(0,count($ads)-1);

echo $ads[$random_ad];

Greg-J
June 18th, 2007, 10:15 PM
how simple???



$ads[] = 'ad1';
$ads[] = 'ad2';
$ads[] = 'ad3';
$ads[] = 'ad4';
$ads[] = 'ad5';

srand ((double) microtime() * 1000000);
$random_ad = rand(0,count($ads)-1);

echo $ads[$random_ad];
You don't need to seed srand anymore.

Selena
June 18th, 2007, 10:33 PM
I actually needed to rotate between two adsense accounts so I can share revenue with another person.

I ended up using jeremy's YPN/GOOGLE rotation snippet. http://www.shoemoney.com/2005/09/12/code-to-rotate-easily-between-adsense-and-ypn/

marshall_26
June 19th, 2007, 01:02 AM
You don't need to seed srand anymore.
Your right, thanks for pointing that out:clap:

MKInfo
June 19th, 2007, 01:06 AM
I actually needed to rotate between two adsense accounts so I can share revenue with another person.

I ended up using jeremy's YPN/GOOGLE rotation snippet. http://www.shoemoney.com/2005/09/12/code-to-rotate-easily-between-adsense-and-ypn/

Nice find Selena :)
Thanks

I was looking for something simple to rotate my Maxbounty ads.Will give it a go.

Selena
June 19th, 2007, 01:10 AM
No problem. I actually wanted something to rotate my CPA ads but never was able to find anything decent.