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

Back & Edit Feature

Author: Eileen Wilde Reference Number: AA-00180 Views: 9445 Last Updated: 06/23/2009 07:29 PM 0 Rating/ Voters

This feature allows you to create multi-page forms with back button allowing form the user to return to the previous page and edit previously entered values.

As well as SUBMIT, you may add BACK button on your forms. The syntax is very simple. Just add another submit button, but called “fpp_back”.

Example:

<input type="submit" name="fpp_back" value="Back">
Note:
Please, specify an absolute path to the Form Processor Pro file in the action parameter of the <form> tag to get the "fpp_back" (back) button work correctly.
<FORM name="myform" method="post" action="http://www.mysite.com/fpp/index.php">

Or you may use HTML tag <BASE> to specify the base URL:

<BASE HREF="http://www.mysite.com/fpp/">

In this case, you can use the relative path to Form Processor Pro, as well as the path to your images, styles, etc.

For example your form is located in the www root folder on your server and Form Processor Pro is located in the "fpp" folder. The form action would be as follows:

<FORM name="myform" method="post" action="fpp/index.php">