PHP Random Number
To generate random numbers in PHP, the
function mt_rand is used.
Let's use it to output a
random number from 1
to 100 as an example:
<?php
echo mt_rand(1, 100);
?>
To generate random numbers in PHP, the
function mt_rand is used.
Let's use it to output a
random number from 1
to 100 as an example:
<?php
echo mt_rand(1, 100);
?>