Hi!
Got this script:
<?php
for($i='A';$i<='Z';$i++){ echo $i.' | '; }
?>
The output is:
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V
| W | X | Y | Z |
AA | AB | AC |
...
YX | YY | YZ |where is should display only letters from A to Z. Why is that? -- Best regards, Paul mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

