I am using a script in wich I need to create a unique Hash with jQuery that I would be able similar to the PHP function uniqid()
.
Any help ?
I am using a script in wich I need to create a unique Hash with jQuery that I would be able similar to the PHP function uniqid()
.
Any help ?
What I think you need is the jquery md5 plugin that will create an md5 hash of a string which should shell out a unique hash for any string you give it. check out https://github.com/placemarker/jQuery-MD5
and then check out http://php.net/manual/en/function.md5.php for the php function to do the same
The uniqid function in php is using the current time in milliseconds. It is not possible to generate the same hash on the client, as timing will be different.