PRE-PURCHASE VERIFICATION

This optional feature redisplays the fields that your customer has entered into the purchase page before the order is actually submitted, so that they can verify that all the information they entered is correct. This feature is not mandatory, it is entirely optional on your part.

<FORM METHOD="POST" ACTION="/cgi-bin/preform.exe">
<input type="hidden" name="preform_template" value="\path\filename.htm">
<input type="submit" value="Place Order">

The variables on the template page must match what was asked for on the purchase page. You need to make a copy of your purchase page, and instead of having the input fields ask for data, they would already be filled in by passing the data forward using the ## values. Your customer could then correct any inaccuracies.

First Name: <input type="text" name="TP_FIRSTNAME" value="##TP_FIRSTNAME##">
Last Name: <input type="text" name="TP_LASTNAME" value="##TP_LASTNAME##">
Email Address: <input type="text" name="TP_EMAIL" value="##TP_EMAIL##">
etc.....

You will have to pass ALL the values from the total page onward in this fashion, whether by text input fields or by "hidden' values.