Forum Moderators: coopster
$id = (substr(uniqid (""), 2, 7));
example output >> c846dd1
I'd like to append "abc" to beginning of the id.
eg. abcc84dd1
Any ideas? I'd appreciate it!
Bingo
$id = "abc" . (substr(uniqid (""), 2, 7));
Taxi for me! :)
$id = uniqid("abc");