To generate a random number between 0 and 100 do this: // PHP Code srand((double)microtime()*1000000); echo rand(0,100); Read more in the php manual: www.php.net/manual/function.rand.php