Is there a way to get all alphabetic chars (A-Z) in an array in PHP so I can loop through them and display them?
To get both upper and lower case merge the two ranges:
$alphas = array_merge(range('A', 'Z'), range('a', 'z'));