a task for any programmers here

theseodude

Regular Member
Joined
Jun 25, 2012
Messages
304
Reaction score
89
my question is hard to describe.

ok here:
aa
ab
ac
dl
pa
eq
jt

I need to list all possibilities. i think there would be 650 of them.
 
<?php
$set1=range('a', 'z');
$set2=range('a', 'z');
foreach($set1 as $first){
foreach($set2 as $second){
echo $first.$second." , ";
}
}
?>
 
Back
Top