I know there is a better way to do that, and this code is silly, but 
still...
Try running these two loops in PHP 4.2.3.

for($i = 'A'; $i <= 'Y'; $i++){
    echo "$i ";
}


for($i = 'A'; $i <= 'Z'; $i++){
    echo "$i ";
}

Notice the difference in output. Is this the expected result?

Vlad


-- 
Vlad Krupin
Software Engineer
echospace.com



-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to