Get random number using php
Get random number using php
Here is the simple code to create random numbers in php,
<?php $min=10; $max=500; echo rand($min,$max); ?>
This will create a random number between minimum value of 10 and maximum value of 500
Get random number using php,