Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?
function random_nums($x=10, $min=0, $max=10000) {
$list_of_nums = array();
for($i=0;$i<$x;$i++) {
$temp=mt_rand($min,$max);
while(in_array($temp, $list_of_nums)) {
$temp=mt_rand($min,$max);
}
$list_of_nums[]=$temp;
}
return $list_of_nums;
}
$list_of_nums = random_nums();
foreach($list_of_nums as $num) {
echo "$num<BR>";
}
?>