I know how to do this in Php, as it is a simple, but i am struggling to get a version working.
for ($i = 'A'; $i < 'Z'; $i++) {
$k = $i;
$k++;
echo "$i->$k, ";
}
Basically i want to pass a letter into a function and get the next letter in the alphabet. Is there any easy ways or directions that i could be pointed in.