I'm looking for a spinner that... When visitors come to my website, I want them to be randomly redirected from a choice of 10 different links. For example. Visitor #1 goes to mysite.com/page.php and lands on google.com Visitor #2 goes to mysite.com/page.php and lands on twitter.com etc.... etc... Thanks.
<?php $links = array("domain-1.com", "domain-2.com", "domain-3.com", "domain-4"); $randomLink = rand(0, sizeof($links) - 1); header("Location: " . $links[$randomLink]); ?> PHP: Not tested, but should be working as requested.