• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

google ads rotation script

Here's a simple one that displays them randomly, it's PHP.
PHP:
<?php
$adcode = array(
'Ad code one',
'Ad code two',
'Ad code three',
'And so on'
);
shuffle($adcode);
echo $adcode[1];
?>

But you didn't really give us enough details of what you want.
 
Here's a simple one that displays them randomly, it's PHP.
PHP:
<?php
$adcode = array(
'Ad code one',
'Ad code two',
'Ad code three',
'And so on'
);
shuffle($adcode);
echo $adcode[1];
?>

But you didn't really give us enough details of what you want.



Whether this will shuffle Google adcodes?

and whether TOS allows it?
 
Why would you need to rotate Google ads? They change everytime the page loads anyway...
 
Why would you need to rotate Google ads? They change everytime the page loads anyway...

maybe he wants to use two different publisher IDs?

thermodynamics, I suggest you contact adsense to make sure what you want to do is OK.
 
Back
Top