How can I create an array of the letters of the alphabet?
<?php
$letters = range(a,z);
?>
This will give you an array from A to Z.
Comment on this Question and Answer >>>
ASK A QUESTION
More arrays PHP Questions
How do I write my own sort function?I have an array of numbers and many repeat, how to list all items in order of maximum occurence?
How do I pick a random value from an array?
How can I reset an array in PHP?
How can I reverse sort an array keeping the correlation between the index and value?
