> I tested this and found two small problems. The code works if you do > this (I was myself amazed that letters would increment)
But is that a bug? Or a feature?
You could also do this, which would probably be more universal:
// 65 through 90 for upper case
// 97 through 122 for lower case
for( $i = 65; $i <= 90; $i++ ) {
echo chr( $i );
}
Chris
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

