View Single Post
  #3 (permalink)  
Old 07-24-2007, 02:56 AM
oxygen oxygen is offline
D-Web Architect
 
Join Date: Jun 2007
Posts: 633
oxygen is on a distinguished road
Default Re: How do I generate a random number from php?

To generate a random number between 0 and 100 do this:


srand((double)microtime()*1000000);
echo rand(0,100);


Read more in the php manual:
PHP: rand - Manual
Reply With Quote