how to randomly choose 5 numbers out of 50 numbers in PHP? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T07:59:25Zhttp://stackoverflow.com/feeds/question/1066226http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1066226/how-to-randomly-choose-5-numbers-out-of-50-numbers-in-php1how to randomly choose 5 numbers out of 50 numbers in PHP?Shore2009-06-30T21:40:04Z2009-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#10662395Answer by gclaghorn for how to randomly choose 5 numbers out of 50 numbers in PHP?gclaghorn2009-06-30T21:43:09Z2009-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-1Answer by Secko for how to randomly choose 5 numbers out of 50 numbers in PHP?Secko2009-06-30T21:45:43Z2009-06-30T21:45:43Z<p>Try this:</p>
<pre><code>$randomnumber = (rand()%$num);
</code></pre>