vote up 1 vote down star

Or is there a ready function there?

flag

40% accept rate
What 50 numbers? Are they 50 known numbers to choose 5 from, or are you just looking to select 5 (unique) numbers within a certain range? – GApple Jun 30 at 21:44
Don't know why this was downvoted, it's a good question (albeit somewhat poorly worded, but still). – musicfreak Jun 30 at 21:45

2 Answers

vote up 5 vote down check

Put the numbers in an array and use:

$selectrand = array_rand($arrayname, 5);
link|flag
vote up -1 vote down

Try this:

$randomnumber = (rand()%$num);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.