Log in

View Full Version : Number Generation


Hex_legend
07-02-2008, 09:20 PM
I am working on something which needs to assign a random number / text to a member on the page (as like a download id)

How can I get a field that will assign a number / text to a members download product?

Any information will be helpful

E.G. A download id for a member (licence number) ABC123456 which would be kept randomised per member

Opserty
07-02-2008, 09:46 PM
Use PHP md5() or sha1() or something to generate a hash (using random string e.g. userid + salt + time) ?

Hex_legend
07-02-2008, 09:48 PM
How would we do that? Is there any guide anywhere?

Opserty
07-02-2008, 09:57 PM
Erm not sure what you are asking, its just a line of PHP code...

http://www.php.net/md5

Dismounted
07-03-2008, 07:57 AM
uniqid() can generate a random ID.