An if Statement That Uses else : If statement « Statement « PHP






An if Statement That Uses else

 
<html>
<head>
<title>An if Statement That Uses else</title>
</head>
<body>
<div>
<?php
    $satisfied = "very";
    if ( $satisfied == "very" ) {
      print "very";
    } else {
      print "not very";
    }
?>
</div>
</body>
</html>
  
  








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.A helpful addition to if statements is the elseif statement, which allows you to chain conditions together in a more intelligent way:
9.An if Statement
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