Tag php if else short form

PHP Shorthand if Statements

Short Hand If To write shorter code, you can write if statements on one line. Example One-line if statement: $a = 5; if ($a < 10) $b = “Hello”; echo $b

PHP if…else Statements

PHP – The if…else Statement The if…else statement executes some code if a condition is true and another code if that condition is false.