> I need to make this case insensitive. This seems like over kill?
> 
> if((substr($author, 0, 1) == "a") or (substr($author, 0, 1) == "a"))
> {
> }

if((strtolower(substr($author, 0, 1)) == "a")
{
}

:)

J

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

Reply via email to