<?phpfunction randomstr($length){ return substr(md5(time()*rand(1, 100)), 0, $length);}echo randomstr(16);?>