Skip to content

Instantly share code, notes, and snippets.

View ivoo77's full-sized avatar

Ivaylo Malinov ivoo77

View GitHub Profile
@ivoo77
ivoo77 / lotto.php
Created October 24, 2017 17:09
PHP script for random 6 lottary numbers from 1 to 49
<?php
//script for random 6 lottary numbers from 1 to 49.
$lottoarray = array();
for($i=1;$i<=6;$i++){
do{
$random = random_int(1, 49);
}while (in_array($random, $lottoarray));
$lottoarray[] = $random;
}