komisch wie krieg ich das hin das die zufallszahl immer 6 stellen hat und nicht ab un zu mal 5
danke
PHP-Code:
function ticket(){
mt_srand((double)microtime()*1000000);
$zufall = mt_rand(0,999999);
return $zufall;}
$pin = ticket();
danke
Kommentar