On Mon, 14 Jul 2003 12:04:54 +0200, you wrote:
> if ($user!='monganl') is what I have
>
>this is what I want to do
> if ($user!='monganl' or 'wilsonma')
>
>what would be the proper format for this!
if ($user != 'monganl' || $user != 'wilsonma')
however, this condition would never fire, as $user
if ($user!='monganl') is what I have
this is what I want to do
if ($user!='monganl' or 'wilsonma')
what would be the proper format for this!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
2 matches
Mail list logo