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.php.net/unsub.php