Does any one have a Php link Rotator?



I adapted on the fly from a script of mine, it's not tested but it should work

PHP:
$activeOffers[0] = 'http1...........';
$activeOffers[1] = 'http2...........';
$randomOffer = $activeOffers[array_rand($activeOffers)];
header("Location ".$randomOffer);
 
basically you should put all your affiliate links in the $activeOffers array, make sure to increment by 1 for each url

then save this in a .php file and send your visitors there, they'll be sent to a random offer among the options

TEST IF IT WORKS