Back & Edit Feature

Top  Previous  Next

This feature allows you to create multi-page forms with back button allowing form applicant return to 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 absolute path to Form Processor Pro file in the action parameter of the <form> tag to get "fpp_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 base URL:

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

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

E.g. Your form is located in the root folder on your server and Form Processor Pro is located in the "fpp" folder, so action would be as follows:

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