if ($author[0]=='a' || $author[0]=='A')
{
...
}
or (much slower)
if (strtolower($author[0])=='a')
{
...
}
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
if ($author[0]=='a' || $author[0]=='A')
{
...
}
or (much slower)
if (strtolower($author[0])=='a')
{
...
}
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php