Created by potrace 1.16, written by Peter Selinger 2001-2019

Miva Developer Docs


Used in an statement to provide an alternate execution branch when the condition return false.

Syntax
<MvELSE> 

In this example the code executed branches based on the system clock’s current hour of the day, where LT means Less Than. See Operators.

<MvIF EXPR="{ s.tm_hour LT 12 }">
    Good Morning.<br>
<MvELSE>
    Good Afternoon.<br>
</MvIF>