dont know if woj did this for you...took about 2minutes....
<?
$chars = array('a','b','c','d','e','f','g','h','i','j','k', 'l','m','n','o','p','q','r','s','t','u','v','w','x ','y','z','0','1','2','3','4','5','6','7','8','9') ;
$output = array();
for($i=0;$i<count($chars);$i++){
for($j=0;$j<count($chars);$j++){
for($k=0;$k<count($chars);$k++){
$t = $chars[$i] . $chars[$j] . $chars[$k];
$output[] = $t;
}
}
}
echo implode('<br>', $output);
?>
|