Hey guys
I am getting a random number using built in function in a given range of number, like between 300 to 10000. but i want to make sure random number should not be repeated, e.g. if rand() function has output 305 once, it should not come again,
for this i am storing each random number in table and how should i send back the control of previous line to get another number if new random number is already in table?
i mean how to get a unique random number just once in a given range using php.
thanks.