A helpful addition to if statements is the elseif statement, which allows you to chain conditions together in a more intelligent way: : If statement « Statement « PHP






A helpful addition to if statements is the elseif statement, which allows you to chain conditions together in a more intelligent way:

 
<?php
            if ($Age < 10) {
                    print "You're under 10";
            } elseif ($Age < 20) {
                    print "You're under 20";
            } elseif ($Age < 30) {
                    print "You're under 30";
            } elseif ($Age < 40) {
                    print "You're under 40";
            } else {
                    print "You're over 40";
            }
    ?>
  
  








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.In if statement use OR to connect two conditions
7.Use and to connect two statement in if statement
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