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 remove an element from an array without changing the index values for the rest of the array?How do I add to the beginning of an array and find the number of elements in it?
in .$array->description doesn't work "description" is suppose to stay black and turns colored and is ignored Why?
How do you remove duplicate values from an array?
How do we sort an array of names taken from a text file, displaying only unique names?
