Hi there!
I coded the following code to pick 6 random numbers:
<?
//set_time_limit(30);
$numeros[] = rand(1, 60);
while(count($numeros) < 6) {
$numero = rand(1, 60);
if(array_search($numero, $numeros) === false) {
$numeros[] = $numero;
}
}
?>
It worked fine on my computer (php4.2.2/apache/win), but it's not working on lycos server....The following error is shown:
Fatal error: Maximum execution time of 10 seconds exceeded in megasena.php on line 11
I tried to use the set_time_limit() but the problem was not solved...
Could anyone help me??
Thanx in advance