First you need to put this code in the header.php file.
<?php
global $x;
$x = rand(1,2);
?>
This code will generate a random number of 1 and 2, and then substitutes it to the global variable x.global $x;
$x = rand(1,2);
?>
Next, insert the nuffnang and advertlets inside the code below.
<?php
if ($GLOBALS['x'] == 1) { ?>
<!--nuffnang--> <?php } else {?>
<!--advertlets--> <?php } ?>
Now, just copy the code and paste it into the template, as many as desired.if ($GLOBALS['x'] == 1) { ?>
<!--nuffnang--> <?php } else {?>
<!--advertlets--> <?php } ?>
The code will show one or more nuffnang or advertlets ads at random with a chances of 50%.