>>50077663Here:
<?php
function print_combinations($characters, $length, $combination = '') {
if ($length > 0) {
foreach ($characters as $i) {
print_combinations($characters, $length - 1, $combination . $i);
}
} else {
printf("%s\n j", $combination ."@gmail.com");
}
}
$characters = array_merge(range('A', 'Z'), range('a', 'z'), range(0, 9));
print_combinations($characters, 5);
//lots of love,
//Thailad
?>
Open notepad, paste this, save as.. (anyname) combo.php, save as type: All Files. (see pic
Then
Google: how to run php file on windows (or something)