How would it be possible to generate a random, unique string using numbers and letters for use in a verify link? Like when you create an account on a website, and it sends you an email with a link, and you have to click that link in order to verify your account...yeah...one of those.
How can I generate one of those using PHP?
Update: Just remembered about uniqid()
. It's a PHP function that generates a unique identifier based on the current time in microseconds. I think I'll use that.