Example of using an if/else statement:
Is 20 greater than 10? Yes!

Example of using a PHP case statement:
Your favorite song is golden!

If/else statements in PHP only get evaluated if the condition is true.
If/else statements use many operators to evaluate values.
A case statement compares the value of the expression to many values and works similarly to an if/else statement.