Ok, I have this string of code:
$m = mt_rand(1,9);
EACH time it comes up as '9'.
I tried $m = rand(1,9);
Then it only seems to come up as one.
Help.
Try this:
mt_srand((double)microtime()*1000000); $randval = mt_rand();