Re: Using the OR operator in an IF statement

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Saturday 08 January 2005 19:02, Tim Burgan wrote:

> Can someone please correct me on my efforts below.
> If I have a condition where I want to test if a variable is not equal to
> "student", "staff", or "admin".. what's the simplest was to achieve that?
>
> Here's what I tried.. that didn't work:
>
> <?php
>    if ( ($_POST['usertype'] != "student") || ($_POST['usertype'] !=
> "staff") ||  ($_POST['usertype'] != "admin") )
>    {
>       // ...
>    }
> ?>

You need to use 'AND' (or '&&').

Or you can use in_array():

  $usertype = array('student', 'staff', 'admin');
  if (in_array($_POST['usertype'], $usertype)) {
    // valid usertype;
  } else {
    // invalid usertype
  }

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
------------------------------------------
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
------------------------------------------
New Year Resolution: Ignore top posted posts

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux