I have a series of random numbers for a lottery.
How can i chose the random number for the second place and so on, without having the risk of pulling out the first place again?
$first = rand(0..99999) $second = rand(0..99999) $third = rand(0..99999) I need to get some sort of exception in the following drawings.