how to randomly choose 5 numbers out of 50 numbers in PHP? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T07:59:25Z http://stackoverflow.com/feeds/question/1066226 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1066226/how-to-randomly-choose-5-numbers-out-of-50-numbers-in-php 1 how to randomly choose 5 numbers out of 50 numbers in PHP? Shore 2009-06-30T21:40:04Z 2009-06-30T21:45:52Z <p>Or is there a ready function there?</p> http://stackoverflow.com/questions/1066226/how-to-randomly-choose-5-numbers-out-of-50-numbers-in-php/1066239#1066239 5 Answer by gclaghorn for how to randomly choose 5 numbers out of 50 numbers in PHP? gclaghorn 2009-06-30T21:43:09Z 2009-06-30T21:43:09Z <p>Put the numbers in an array and use:</p> <pre><code>$selectrand = array_rand($arrayname, 5); </code></pre> http://stackoverflow.com/questions/1066226/how-to-randomly-choose-5-numbers-out-of-50-numbers-in-php/1066248#1066248 -1 Answer by Secko for how to randomly choose 5 numbers out of 50 numbers in PHP? Secko 2009-06-30T21:45:43Z 2009-06-30T21:45:43Z <p>Try this:</p> <pre><code>$randomnumber = (rand()%$num); </code></pre>