Script to Rotate LP's on Tracking 202

Status
Not open for further replies.

dahunter

On My Path To Mastery
Dec 7, 2008
80
1
0
los angeles
Do you guys know where I can get a script to rotate different lp's using tracking 202?

I'm thinking of having something custom made but if you guys have something that's working already it'd be much appreciate it.
 


i wrote a module for drupal 5 that makes everything with 202 really easy if you use it?
 
PHP:
<?php
$randNum = rand(1 , 4);
if ($randNum == 1){
    include 'landingpage1.php';
} elseif ($randNum == 2){
    include 'landingpage2.php';
} elseif ($randNum == 3){
    include 'landingpage3.php';
} else {
    include 'landingpage4.php';
}
exit();
?>
 
Status
Not open for further replies.