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?
feedback
|
|
To get both upper and lower case merge the two ranges:
| |||||
feedback
|
|
$alphabet = 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') | |||||
feedback
|
|
Another way:
| |||
|
feedback
|
| |||||||
feedback
|
| |||
|
feedback
|
| |||
|
feedback
|