View previous topic :: View next topic |
Author |
Message |
lcc Guest
|
Posted: Fri Jul 02, 2004 3:32 pm Post subject: problem save file with +1 form bearing the same form name. |
|
|
I put 3 forms for different purpose in a single page, when I save the file, it failed becox "your page contains duplicate form names."
I checked the forms html, all of them are bearing the same form name as below:
Form A html: <form name="contactForm" method="post" action="http://www.mycontactform.com/sendform/sendform.php">
Form B html: <form name="contactForm" method="post" action="http://www.mycontactform.com/sendform/sendform.php">
Can I put more than 1 form in a single page?
If yes, how to solve the problem and keep all forms work?
Thanks in advance for advice. |
|
Back to top |
|
|
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Fri Jul 02, 2004 5:08 pm Post subject: Its Fine |
|
|
There is no technical problem with placing more than one form on a single page so long as the html for the submit button is place within the correct <form> tags. The error you are getting has to do with whatever html editor you are using for which there is probably a way to override the message. It will work fine once posted on the server...its just your software that is being stubborn. Try just doing it with notepad or another html editor.
Thanks,
Nick Ladd
myContactForm.com |
|
Back to top |
|
|
|