View previous topic :: View next topic |
Author |
Message |
InkGoddess
Joined: 12 Apr 2006 Posts: 2 Location: Phoenix, Arizona
|
Posted: Wed Apr 12, 2006 10:39 am Post subject: Two forms on one Page? |
|
|
Greetings!
Can I place two different forms on one page in my website?
Thanks!
InkGoddess |
|
Back to top |
|
|
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Thu Apr 13, 2006 7:52 am Post subject: Reply |
|
|
Yes.
Nick Ladd
myContactForm.com |
|
Back to top |
|
|
InkGoddess
Joined: 12 Apr 2006 Posts: 2 Location: Phoenix, Arizona
|
Posted: Thu Apr 13, 2006 8:21 am Post subject: re two forms on one page |
|
|
Thanks, how do I do that? When I try to save the html page (I use frontpage) it doesn't allow me to, giving me an error that says I have two forms with the same name, though my forms on MyContactForm have different names.
Thanks!
InkGoddess |
|
Back to top |
|
|
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Fri Apr 14, 2006 9:30 am Post subject: Reply |
|
|
Technically both of the forms must have different names in the html code (although it will work if you leave them the same). The 'name' that Frontpage is referring to is different than the 'name' you gave the form in the wizard. Do the following, and it will work:
1. Paste both forms into Frontpage.
2. Go to the code view for the web page.
3. Track down the HTML (after you've pasted both of the forms to the site you should be able to find this exact code in two places):
Code: |
<form name="contactForm" method="post" action="http://www.mycontactform.com/sendform/sendform.php"> |
4. Change one instance of the code to say:
Code: |
<form name="contactForm1" method="post" action="http://www.mycontactform.com/sendform/sendform.php"> |
5. Change the other instance of the code to say:
Code: |
<form name="contactForm2" method="post" action="http://www.mycontactform.com/sendform/sendform.php"> |
That should do the trick. |
|
Back to top |
|
|
|