Will this work...and is there a way to make the code cleaner/faster? Its going to be processed like a couple times a second.
Any input appreciated (cuz IM no programmer)
Its supposed to redirect but I don't even know if my header line is right.
PHP Code:
<?php
// Random URL From File
srand((double)microtime()*1000000);
$list=file("URLLIST.txt");
$url=rand(0, count($list)-1);
header("Location: $url");
?>