| | |||||
| ||||||||
| "Short" Domain Discussion Generally defined as easily resalable domains of 5 characters or less -- LLL, LLLL, L-L-L, 2c, 3c, acronyms, etc |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| NamePros Member Join Date: Apr 2010
Posts: 63
![]() | LLL.txt files - 3 letter generators Hello all, I'm looking for a txt file with all the possible 3 letters combinations (without numbers) so basically with the 26^3 combinations... could you please help me? I have found some online tools but I need to do that manually for all the 26 letters... thank you |
| | |
| | #5 (permalink) |
| NamePros Regular Join Date: Jun 2006
Posts: 508
![]() ![]() ![]() | <?php $blah = 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'); $extension = '.com'; for ($a=0; $a<26; $a++) { for ($b=0; $b<26; $b++) { for ($c=0; $c<26; $c++) { echo $blah[$a] . $blah[$b] . $blah[$c] . $extension . "\n"; } } } ?> |
| | |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |