Re: [PHP] A to Z incremental

2004-04-23 Thread Rob Ellis
gt; 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: > > > > > > > &g

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 wr

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: > > 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 | > > wher

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: >>> >>> >> 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

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: >> >> > 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 |

Re: [PHP] A to Z incremental

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

RE: [PHP] A to Z incremental

2004-04-22 Thread Pablo Gosse
> Hi! > Got this script: > > 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

[PHP] A to Z incremental

2004-04-22 Thread Paul
Hi! Got this script: 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 m