Online Chat
 Call Us: 
1-877-744-1221
Browse Submit a Ticket
 
Advanced Search
Tools
Rss Categories

Templates Syntax

Author: Eileen Wilde Reference Number: AA-00118 Views: 8821 Last Updated: 06/23/2009 03:31 PM 0 Rating/ Voters

Templates are email templates, preview pages, thank you pages or any page following the first form page.

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

Examples:

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

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

And you need to show the value in a preview. 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 the preview page: 

First name: John

It is very simple!