Quote:
Originally Posted by Napolean
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.
|
nice modification man

i shoulda thought of that but I was jus tryin to get him a quick basic idea.