how to fetch rand in php code example
Example 1: php random number
// $min and $max are optional
rand($min,$max);
Example 2: creating random number betwwen ranges in php
The rand() function generates a random integer. Tip: If you want a random integer between 10 and 100 (inclusive), use rand (10,100). Tip: The mt_rand() function produces a better random value, and is 4 times faster than rand().