You are viewing version #7 of a page entitled Create Form Stand Alone. The page Owner is admin and the last changes were made by admin 5 months ago. There are 800 words in this revision and it has been viewed 601 times.
This page is Protected from any changes.

Click to hide
Contents (hide)

Creating a Custom Stand-Alone Form

What is a Stand Alone Form

A “Stand-Alone” form, unlike a “Template-Generated” form, is one that is NOT rendered by ppSD2. This means that you will have to manually create an HTML file with all of the form fields.

The “Stand-Alone” method is only recommended for advanced users with knowledge of HTML and web forms. Most users should use the much simpler “Template-Generated” system.

Benefits of a Stand-Alone Form
Drawbacks of a "Stand-Alone" Form

Step 1: Add the Form to the Database

From the ppSD2 admin control panel, create a form. Make sure that you set the “Template Generated” field to “Custom Stand-Alone Page”. By creating this form from within ppSD2 you are effectively informing the program that it is okay to allow registrations from this form (safety measure). A form will not work unless you create it from within the ppSD2 control panel first.

Step 2: Setting Page Locations and Required Fields

After you’ve created the form from within the ppSD2 control panel, do the following:

username
email
first_name
last_name
phone

Step 3: Creating the HTML file for the Stand-Alone Form

<form action="http://www.yoursite.com/ppSD2/register.php" method="post">
<input type="hidden" name="action" value="process" />
<input type="hidden" name="id" value="form_id_here" />

<input type="text" name="eXaCt_FiElD_1_nAmE_HeRe" value="" />
<input type="text" name="eXaCt_FiElD_2_nAmE_HeRe" value="" />
etc.

<input type="submit" value="Register" />
</form>
Password
<input type="password" name="password" value="" />
<input type="password" name="repeat_pwd" value="" />
Required Changes to the Above Code

Things to Remember

This page last modifed by admin @ 16 April 2010 08:25. Created on 14 August 2009 06:38 Protected Page