Hmm, i really can't think of a better way to do it than this: (although i would bet there is one).
PHP Code:
<?php
for ($i = 65; $i <= 90; $i++)
{
$firstcharacter = chr( $i );
for ($x = 65; $x <= 90; $x++)
{
$secondcharacter = chr( $x );
for ($q = 65; $q <= 90; $q++)
{
$thirdcharacter = chr( $q );
$domain = $firstcharacter . $secondcharacter . $thirdcharacter;
// echo $firstcharacter . $secondcharacter . $thirdcharacter . '<br />';
}
}
}
?>
edit: Ah just realised you put "have" not make lol. Ah well if you ever need to produce one use this
