else
Often you'd want to execute a statement if a certain condition is
met, and a different statement if the condition is not met. This
is what
else statement is only executed if the
if expression evaluated to
false , and if there were any
elseif expressions - only if they evaluated to
false as well (see elseif).
|