Timby
It’s pretty common to want to rotate between ad’s or content. You may want to have a mix of adsense and some CPM, or you may just want to swap between a picture of yourself and a tree.
Here is a neat little switch statement that will allow you to rotate an ad/content every time the page is refreshed:
<php
//rand returns a number between 0 and 2 inclusive
$choice = rand(0, 2);
switch ($choice)...