Whats the best way for random number generation?
this is what im using now
this is what im using now
Code:
<? mt_srand ((double) microtime() * 1000000); $random = mt_rand(1,100); echo $random; ?>


Comment