What I want to do is first generate a random number, then round it off so that the final number is a multiple of 5.
For example use the folowing rand statement:
$randomnumber = rand(1,100);
Then use some code here to round off the number so that I only get 5, 10, 15, 20, 25, etc...
Is there anyway to do this? All the docs I find on round() are for rounding deciaml places, all my numbers will be whole!!
Thanks a lot