This one time, at band camp, "Leon du Plessis" <l...@dsgnit.com> wrote:

> I used that notation before, and it did not work 100%. 
> Adapt as follows:
> 
> for ($i = 'a'; $i <= 'z'; $i++)
>     if ($i == "aa") break; else echo $i;
> 


foreach(range('a', 'z') as $letter ) { echo $letter; }

Kevin


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to