WMPRO, WMMINI FW >= 1.893 WMMEGA FW >= 2.0
Return a random integer between min and max
This function returns a pseudo-random whole number that is greater than or equal to min and less than max
$min: Minimum possible value
$max: Maximum, returned values will be less than this
Pseudo-random integer
<pre><? for ($i=1; $i<=5; $i++) { print(rand(0,100)."\r\n"); } ?></pre>
Typical output for the above example (actual results vary randomly):
76 44 12 49 84