<?phpfunction randomstr($length){ for($i=0; $i<$length; $i++)$str[$i]=chr(rand(97, 122)); return implode("", $str);}echo randomstr(16);?>