Quote:
Originally Posted by manguish
No joy i take?
|
PHP Code to generate a random number.
rand({min},{max})
So rand(2, {users}) will return a random number that isnt 1.
For not two in a row
DO
$rand1 = rand(2, {users})
$rand2 = rand(2, {users})
UNTILL $rand1 !== $rand2
Something like that. Google search "php rand".
-{users} could be replaced with the variabe for total users in database.