Templates Syntax

Top  Previous  Next

Templates are email template, preview page or any page following the first one.

All template tags are enclosed within delimiters. These delimiters are  {#  and   #}. All content outside of delimiters is displayed as static content, or unchanged. When Form Processor Pro encounters template tags, it attempts to interpret them, and displays the appropriate output in their place. The first variable in {#  #} is usually a name of field which value should be displayed.

Examples:

Lets imagine you have a text field named first_name on your form:

<input type="text" name="first_name">

And you need to show preview. So, in the preview page you should set:

First name: {#first_name#}

And after user submitted the form and filled the field first_name with John, he will see on preview page:

First name: John

It is very simple!