Conditions: If/Else and Switch
First example of an if/else condition
You are an adult.
Example of a PHP case
It's the start of the week.
For Switch Case Statement, it provides an efficient way to compare a variable against multiple possible
values and execute code blocks accordingly.
For If/Else statements, it is used to test multiple conditions sequentially.
If the previous if or else if conditions are false, it checks the next condition.