Thread: php guys
View Single Post
Old 04-29-2005, 12:55 PM  
bawdy
Confirmed User
 
Join Date: Feb 2002
Posts: 1,424
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);
?>
bawdy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote