Quote:
Originally Posted by Jon Clark
Thanks... But would I put replace "fuckingnumber" with the number of files there are?
|
Code:
<?php
$url[] = 'http://www.test1.com';
$url[] = 'http://www.test2.com';
$url[] = 'http://www.test3.com';
$x= strval(rand()%count($url));
include($url[$x]);
?>
simpler version of the example above, only modification needed is to add more url's as you need them.