<?php function rndstr($length = 32) { if($length != 0) return chr(rand(33, 126)).rndstr($length - 1); } echo rndstr(12); ?>