Here's my numbers:
Array ( [0] => 7 [1] => 52 [2] => 44 [3] => 25 [4] => 43 [5] => 21 )
7-52-44-25-43 and megaball: 21
How did I get these numbers? rand(), baby!
PHP Code:
<?php
$chosen = Array();
$i = 0;
while($i<6){
$num = rand(1,52);
if(!in_array($num,$chosen)){
$chosen[] = $num;
$i++;
}
}
print_r($chosen);
?>
Why should my numbers be chosen? Well... come on, my method of picking the numbers was original.