Onetastic Macro Documentation >
>
else if
else if Statement
Description
Executes a set of if the boolean expression of a preceeding if or else if statement evaluates false and the given boolean expression evaluates true.
Syntax
else if (boolean-expression)
Statements...
Examples
if ($x == 0)
else if ($x < 0)
else
See Also
|