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

Miva Developer Docs


Returns program flow to the top of the loop, performing the operations would normally occur at the bottom of the loop i.e. reading the next line.

Syntax
<MvCOMMERCECONTINUE> 

Example#

This example skips any un-important / unused responses from the commerce library using <MvCOMMERCECONTINUE>.

<MvCOMMERCE METAMETHOD = "Card_Provider"
            ACTION = "{ Card_Provider.d.url }"
            FIELDS = "{ l.fields }">
    <MvCOMMENT> Ignore any response greater than 1 </MvCOMMENT>
    <MvIF EXPR = "{ s.x_response_code GT 1 }">
        <MvCOMMERCECONTINUE>
    </MvIF>

    ... process the transaction ...

</MvCOMMERCE>