Shortend function for PHP < 4.3
<?php
function RandomPass($numchar)
{
$word = "a,b,c,d,e,f,g,h,i,j,k,l,m,1,2,3,4,5,6,7,8,9,0";
$array=explode(",",$word);
shuffle($array);
$newstring = implode($array,"");
return substr($newstring, 0, $numchar);
}
?>