PHP: elseif/else if - Manual - PHP: Hypertext Preprocessor
elseif/else if (PHP 4, PHP 5) elseif, as its name suggests, is a combination of if and else. Like else, it extends an if statement to execute a different statement in case the original if expression evaluates to FALSE. However, unlike else, it will execut...