| Current Path : /hdd/hdd11/www/vlevski/passornot/actions/functions/ |
| Current File : /hdd/hdd11/www/vlevski/passornot/actions/functions/get_rnd_numbers.php |
<?php
function getRndNumbers($int){
$num="";
for ($i = 0; $i<$int; $i++)
{
$num .= mt_rand(0,9);
}
return $num;
}
?>