What else is there? The PHP Else statements execute when the if statement’s condition evaluates to false. Remember, the expressions inside of the if statement can only execute when the conditional expression evaluates to true. The else keyword is appended right after the closing curly brace of the if statement. <?php $exercised = false; if ( $exercised ) { echo “You’re being healthy.”; } else { echo “Crickets”; ?> When the programmer chooses to omit the curly braces from the if statement because of a single line expression, the else keyword is appended immediately below the expression that’s