Zufallszahl
Dieses Script gibt euch eine beliebige zufällige Zahl zwischen 1 und 100 aus. Script: <?php srand ((double)microtime()*1000000); $zufallszahl= rand(1,100); echo $zufallszahl; ?>
<?php srand ((double)microtime()*1000000); $zufallszahl= rand(1,100); echo $zufallszahl; ?>