[thelist] PHP Looping

Beau Hartshorne beau at members.evolt.org
Fri May 31 09:19:01 CDT 2002


> Does anyone have any php code that will allow you to loop from A to Z?

I went to http://www.php.net and searched for "loop alphabet" in the
general mailing list.

This message:

http://marc.theaimsgroup.com/?l=php-general&m=100930286504144&w=2

Had code that looked something like this:

<?php

for ($character = 65; $character < 91; $character++) {
	echo chr($character);
}

?>

Cheers,

Beau





More information about the thelist mailing list