function rand php code example
Example 1: random number generator in php
you can use rand() function for that in php.
Example:
Generate random numbers between 1 to 50
<?php
echo rand(1,50);
?>
Example 2: randstring php
<?php
$random = substr(md5(mt_rand()), 0, 7);
echo $random;
?>