Can anyone recommend a solid URL rotator software?



Create a text file called urls.txt or whatever, list your urls on each line.

PHP:
<?php

$sites = array_map("trim", file("urls.txt"));

$redirect = $sites[array_rand($sites)];

echo "<meta http-equiv=\"refresh\"content=\"0;url=http://".$redirect."\">"; 

?>

Simple google search can give you loads of scripts to do this. Here's a decent one, especially if you want to strip the referrer as well:

Code:
http://www.tareeinternet.com/forum/free-scripts/2024-blank-referrer-double-meta-refresh.html#post3539

I'm not a php wiz so don't take my word for it, just do a little digging and you shouldn't have to buy anything to accomplish simple url rotation.
 
PHP:
<?
$urls[]='url1.com';
$urls[]='url2.com';
shuffle($urls);
header("Location: ".$urls[0]);
exit;
?>
 
PHP:
<?php

$link[1] = "http://";
$link[2] = "http://";
$link[3] = "http://";

if (!isset($_COOKIE['link'])){
    $n = count($link);
    $rand = rand(1,$n);
    setcookie("link", $rand, time()+3600);
    header('location:'.$link[$rand]);
}else{
    $go = $link[$_COOKIE['link']];
    header('location:'.$go);
}

?>
 
i dont like cookies much, so I just write to a TXT file the number on my array and move forward from that for my rotation
 
i dont like cookies much, so I just write to a TXT file the number on my array and move forward from that for my rotation


i love cookies
cookie-monster_with_text.jpg