random between 2 numbers php code example
Example 1: php random integer
echo random_int(0,50);
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().