Re: [PHP] Letter incrementing

2004-03-18 Thread David Otton
On Thu, 18 Mar 2004 15:16:34 +0200, you wrote: >But I need to do a $variable = "B"; >and then do a $variable++ that will result in >$variable == "C" for ($i = 0; $i < 26; $i++) { echo (chr($i + ord('A'))); } -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.

Re: [PHP] Letter incrementing

2004-03-18 Thread Justin Patrin
echo char(ord('A') + 1); Brent Baisley wrote: You want to use the char() function. What you need to do is increment an ascii value and then convert that value to a letter. So ascii 65 is A. $asciiVal = 65; echo char($asciiVal); A $asciiVal++; ... On Mar 18, 2004, at 8:16 AM, Brent Clark wr

Re: [PHP] Letter incrementing

2004-03-18 Thread Brent Baisley
You want to use the char() function. What you need to do is increment an ascii value and then convert that value to a letter. So ascii 65 is A. $asciiVal = 65; echo char($asciiVal); A $asciiVal++; ... On Mar 18, 2004, at 8:16 AM, Brent Clark wrote: Hi all Does anyone know how, or even if

Re: [PHP] Letter incrementing

2004-03-18 Thread Richard Davey
Hello Brent, Thursday, March 18, 2004, 1:16:34 PM, you wrote: BC> Does anyone know how, or even if it is possible to increment a letter from the alphabet. BC> But I need to do a $variable = "B"; BC> and then do a $variable++ that will result in BC> $variable == "C" Sure: You'll get "b" :)