Quellcode von zufall1.php

<!-- zufall1.php 2012.02 bi
     Demoprogramm fuer for-Schleife
     -->
<html> 
<body> 
  <h3>Verwendung einer for-Schleife zur Ausgabe von Zufallszahlen</h3> 
  <?php
    
for ($i=0;$i<5;$i++){ 
        
$zz=mt_rand(11,99);
        echo 
"$zz ";
    } 
  
?>
</body> 
</html> 

Letzte Aktualisierung: 12.12.2020 19:55