

<?php
$from=65;
$to=90;
$target = "LLL.txt";
$out = fopen($target, 'a');
for ( $first = $from; $first <= $to; $first += 1) {
for ( $second = $from; $second <= $to; $second += 1) {
for ( $third = $from; $third <= $to; $third += 1) {
fwrite($out, chr($first).chr($second).chr($third).".COM".chr(13).chr(10));
}
}
}
fclose($out);
?>
lzy said:I found this script some time ago;
http://www.lim.nu/combo/?type=lll&tld=.com
Useful for all sorts of different combinations. :D

