RE: [PHP] A to Z incremental

2004-04-23 Thread Ford, Mike [LSS]
On 22 April 2004 15:22, Paul wrote: 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

RE: [PHP] A to Z incremental

2004-04-23 Thread electroteque
use the chr($i) system -Original Message- From: Ford, Mike [LSS] [mailto:[EMAIL PROTECTED] Sent: Friday, April 23, 2004 9:31 PM To: 'Paul'; [EMAIL PROTECTED] Subject: RE: [PHP] A to Z incremental On 22 April 2004 15:22, Paul wrote: Hi! Got this script: ?php for($i

Re: [PHP] A to Z incremental

2004-04-23 Thread Rob Ellis
PROTECTED] Subject: RE: [PHP] A to Z incremental On 22 April 2004 15:22, Paul wrote: 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

[PHP] A to Z incremental

2004-04-22 Thread Paul
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?

RE: [PHP] A to Z incremental

2004-04-22 Thread Pablo Gosse
snip 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

Re: [PHP] A to Z incremental

2004-04-22 Thread John W. Holmes
From: Paul [EMAIL PROTECTED] ?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.

Re[2]: [PHP] A to Z incremental

2004-04-22 Thread Paul
Hello Pablo, Thursday, April 22, 2004, 4:05:23 PM, you wrote: 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 |

RE: Re[2]: [PHP] A to Z incremental

2004-04-22 Thread Pablo Gosse
Paul wrote: Hello Pablo, Thursday, April 22, 2004, 4:05:23 PM, you wrote: 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