forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I enter the data in my form the thank you page does not insert the
confirmation fields.

Do you have any suggestions???

Thanks

JJ

-------------form page----------------------------
<FORM method="POST" action="http://mysite.com/cgi/formmail" name="index.htm">
<p>First Name:<BR>
<INPUT type="text" name="firstname" size="16" tabindex="1"></p>
<P>Last Name:<BR>
<INPUT type="text" name="lastname" size="16" tabindex="2"></P>
<p>Email Address:<BR>
<INPUT type="text" name="email" size="16" tabindex="3">

----------------------Thankyou page----------------------

<P>Dear<B><!--WEBBOT bot="ConfirmationField" s-field="firstname" -->,</P></B>
<BLOCKQUOTE>
<P>Email Address:<B>
<!--WEBBOT bot="ConfirmationField" s-field="email" --></B></P>
 
FP confirmation pages only work w/ the std FP forms handler
- not w/ a send to other (your cgi script)
You will need to modify your script to generate the confirmation page using Perl

PS
The form name is an illegal form name construct (name="index.htm")
- no dot . allowed in form names
- even though your form handler script may like it that way
--




| When I enter the data in my form the thank you page does not insert the
| confirmation fields.
|
| Do you have any suggestions???
|
| Thanks
|
| JJ
|
| -------------form page----------------------------
| <FORM method="POST" action="http://mysite.com/cgi/formmail" name="index.htm">
| <p>First Name:<BR>
| <INPUT type="text" name="firstname" size="16" tabindex="1"></p>
| <P>Last Name:<BR>
| <INPUT type="text" name="lastname" size="16" tabindex="2"></P>
| <p>Email Address:<BR>
| <INPUT type="text" name="email" size="16" tabindex="3">
|
| ----------------------Thankyou page----------------------
|
| <P>Dear<B><!--WEBBOT bot="ConfirmationField" s-field="firstname" -->,</P></B>
| <BLOCKQUOTE>
| <P>Email Address:<B>
| <!--WEBBOT bot="ConfirmationField" s-field="email" --></B></P>
 
Back
Top