if-else Statement
This lesson discusses if-else statements in detail including nested-ifs using examples.
We'll cover the following...
We'll cover the following...
Branches in PHP #
Programming in general often requires a decision or a branch within the code to account for how the code operates under different inputs or conditions.
Within the PHP programming language, the simplest and sometimes the most useful way of creating a branch within your program is through an if-else statement.
if-else #
Let’s start by taking a look at an example which checks if a variable a is greater than or less than b:
The figure below illustrates how the working of the above code snippet ...