PHP AND OR

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • PaulB

    PHP AND OR

    Hello, newbie looking for some help please

    In the following do I have to use two if else structures or can I use a
    boolean funtion in the 'if' because I want to check two variables not one.

    if ($found == 0) AND ($whatever == 0)
    {
    //Do it
    }
    else
    {
    //Do nothing
    }

    Paul


  • SrSilveira

    #2
    Re: PHP AND OR

    On Mar 28, 12:50 pm, "PaulB" <pb...@ntlworld .comwrote:
    Hello, newbie looking for some help please
    >
    In the following do I have to use two if else structures or can I use a
    boolean funtion in the 'if' because I want to check two variables not one.
    >
    if ($found == 0) AND ($whatever == 0)
    {
    //Do it}
    >
    else
    {
    //Do nothing
    >
    }
    >
    Paul
    that?!

    if ($found == 0 && whatever == 0)
    {
    //do it
    }
    else
    {
    //do not do it
    }

    Comment

    • PaulB

      #3
      Re: PHP AND OR

      SrSilveira wrote:
      On Mar 28, 12:50 pm, "PaulB" <pb...@ntlworld .comwrote:
      >Hello, newbie looking for some help please
      >>
      >In the following do I have to use two if else structures or can I
      >use a boolean funtion in the 'if' because I want to check two
      >variables not one.
      >>
      >if ($found == 0) AND ($whatever == 0)
      >{
      >//Do it}
      >>
      >else
      >{
      >//Do nothing
      >>
      >}
      >>
      >Paul
      that?!
      >
      if ($found == 0 && whatever == 0)
      {
      //do it
      }
      else
      {
      //do not do it
      }
      http://www.php.net/manual/en/language.operators.php
      Thank you.


      Comment

      Working...