PHP rand() Function

Generate random numbers:

<?php
echo(rand() . "<br>");
echo(rand() . "<br>");
echo(rand(10,100));
?>
Output:
5545
4545466
65


0 Comments on this post.