In if statement use OR to connect two conditions : If statement « Statement « PHP






In if statement use OR to connect two conditions


<?
$degrees = "95";
$hot = "yes";

if (($degrees > 100) || ($hot == "yes")) {
    echo "<P>TESTIt's <strong>really</strong> hot!</P>";
} else {
    echo "<P>TESTIt's bearable.</P>";
}
?>
           
       








Related examples in the same category

1.Executing Multiple Statements with One if
2.An if Statement That Uses else
3.An if Statement That Uses else and elseif
4.An if Statement for string
5.Within an if Else statement
6.Use and to connect two statement in if statement
7.A helpful addition to if statements is the elseif statement, which allows you to chain conditions together in a more intelligent way:
8.An if Statement
9.An if Statement That Uses else
10.An if statement That Uses else and else if
11.Basic Use of the if Statement
12.Case Switching
13.Checking multiple conditions
14.Making a decision with if()
15.Multiple statements in an if() code block
16.If-else Statement
17.Using if Statements to Mimic a select Statement
18.Using if statement to print "Youth message" if $age is between 18 and 35
19.Using if to test for multiple values
20.Multiconditional if Statements
21.Using else with if()
22.Using elseif()
23.Print the string "Child message" if the $age variable is between 1 and 17