tedd wrote:
for I can't get it to stop when it passes "z" -- which I think it should.

But, people have posted code solutions for you to do exactly what you want. So have I. Here it is again:

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

I don't mean to sound harsh, but why are you still complaining about it? You've been shown to do exactly what you want, why is it still a problem?

Heck, if you still really want to do < and > with strings, you can easily write your own functions to compare two strings using your own requirements.

Regards, Adam Zey.

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

Reply via email to