forms

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>
 
S

Stefan B Rusynko

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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top