Hi, I want to be able to get a php program to loop from A to Z, so that in the loop I can print out the Different Letters.
Can anyone help?
Thanks
Well, there are several ways of accomplishing this.
The easiest one is to use a characters ASCII code. For instance;
for ($x = 65; $x < 92; $x++) printf("%c", $x);
Or similar.
You'll have to give us a little more than that. What are you trying to do exactly?