On Wed, 2007-06-13 at 13:57 -0400, tg-php@xxxxxxxxxxxxxxxxxxxxxx wrote: > double pipes constitutes an "OR" operation. You can use the keyword OR as well. Also, && and AND are the same as well. > > http://us.php.net/manual/en/language.operators.logical.php They aren't exactly the same. Make sure and read the order of precedence note. The following, for example, are not equivalent: <?php $true = true; $false = false; $test1 = $true && $false; $test2 = $true and $false; ?> Cheers, Rob. -- .------------------------------------------------------------. | InterJinn Application Framework - http://www.interjinn.com | :------------------------------------------------------------: | An application and templating framework for PHP. Boasting | | a powerful, scalable system for accessing system services | | such as forms, properties, sessions, and caches. InterJinn | | also provides an extremely flexible architecture for | | creating re-usable components quickly and easily. | `------------------------------------------------------------' -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php