View previous topic :: View next topic |
Author |
Message |
TianaMcCray
Joined: 23 Mar 2009 Posts: 1
|
Posted: Tue Mar 24, 2009 5:28 pm Post subject: Not receiving my form when submitting |
|
|
I have tried several times to submit the form to myself with no luck. I have tried 3-4 times to re-copy the html, but nothing changes. I even tried changing the url from f4aevents.com to, http://f4aevents.com/index.php?option=com_contact&view=contact&id=1&Itemid=67. Please help!!  |
|
Back to top |
|
 |
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Thu Mar 26, 2009 7:14 am Post subject: Reply |
|
|
The HTML on your site is incorrect. It is missing the 'action' portion of the form tag. Because it is missing this bit of code, it is simply reloading the page instead of sending the data to our server for processing.
This is either being deleted accidentally by yourself, or being done by your html editor, CMS, or web host.
You need to change the line that says:
Code: |
<form name="contactForm" method="post"> |
To:
Code: |
<form name="contactForm" method="post" action="http://www.mycontactform.com/sendform/sendform.php"> |
If it is still being removed once you upload it, your web host is most likely altering the code.
Nick Ladd
myContactForm.com |
|
Back to top |
|
 |
|