create unique token!!!
Posted: Mon Nov 13, 2006 6:04 am
is this unique enough?
Code: Select all
md5(uniqid(rand(), true));A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
md5(uniqid(rand(), true));Code: Select all
$new_token = $last_token + 1;kind of don't want to create file just for that one. token should be unique for each requests.Jenk wrote:will get you a unique number.Code: Select all
$new_token = $last_token + 1;