Hello, Do you have a list of all 3 letters domain names? Aaa, aab, aac etc. If no, do you know a software to create this list? Thanks.
If you run this PHP code - it should print out all possible combinations of 3 letters I think. Should be 26 to the 3rd power of combinations (so you can verify). <?php $chars = range("a", "z"); foreach ($chars as $char1) { foreach ($chars as $char2) { foreach ($chars as $char3) { echo "{$char1}{$char2}{$char2}\n"; } } } The registrar I use allows you to upload CSV files of domains to check availability - might come in handy for you.
Minor correction in that code: <?php $chars = range("a", "z"); foreach ($chars as $char1) { foreach ($chars as $char2) { foreach ($chars as $char3) { echo "{$char1}{$char2}{$char3}\n"; } } }
Let's just do a recap here: A guy asks you "do you know how to print 100 dollar bills and you don't print them for yourself and instead you show him the way to do it..."!!! I hope you can see the analogy.
tested and worked! Can you modify this code, in the way to get the results in colon, like: aaa aab aac ... Also how could the code be modified in the way to add numbers from 0-9 in the combination? Thank you