Does anyone know of a good php script for rotating offers on mobile landers? Much appreciated.
My code is the same everywhere. I think I got it from CTRTard's site.
put at top:
$aff[] = "http://mydomain.com/lp/networka_link1.php"; // link 1 from network A
$aff[] = "http://mydomain.com/lp/networka_link2.php"; // link 2 from network A
$aff[] = "http://mydomain.com/lp/networkb_link1.php"; // link 1 from network B
$random_number = rand(0,count($aff)-1);
$affurl = $aff[$random_number];
Then in body wherever your link is use $affurl so like so:
<a href="<?php echo $affurl ?>">Click here!</a>
It's not going to be perfectly distributed, but it gets the job done.