View Single Post
Old 11-23-2009, 07:34 PM  
rowan
Too lazy to set a custom title
 
Join Date: Mar 2002
Location: Australia
Posts: 17,393
Quote:
Originally Posted by qwe View Post
it doesn't have to be, can be random too if it's easier
Far easier.

<?php
$urls = file("URLS.txt", FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
header("HTTP/1.0 302 redirect");
header("Location: " . $urls[(rand(0, count($urls) - 1))]);
?>
rowan is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote