Is it possible to get a range with PHP from A to ZZ*?
a b c ... aa ... zx zy zz
For me this didn\'t work:
range(\'A\', \'ZZ\');
This is as far as I can help you (generate array with A through Z).
$a = range(65, 90); array_walk($a, 'chr');
Check out chr and array_walk