PHP ile rastgele sayı üretme:
<?php /* rastgele sayı üretme */ ?> <!doctype html> <html> <body> <?php echo rand() . "<br>"; echo rand() . "<br>"; echo rand(5, 15); foreach(range(1,10) as $i){ echo "<br>"; } ?> </body> </html>
820 Gösterim
PHP ile rastgele sayı üretme:
<?php /* rastgele sayı üretme */ ?> <!doctype html> <html> <body> <?php echo rand() . "<br>"; echo rand() . "<br>"; echo rand(5, 15); foreach(range(1,10) as $i){ echo "<br>"; } ?> </body> </html>
İlk Yorumu Siz Yapın