mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Tue Aug 04, 2009 8:45 am Post subject: Reply |
|
|
Good Day,
The problem is that you have inserted the myContactForm.com code within an already open form tag. If you look at the HTML source for the page you will find the following line of code:
Code: |
<form name="cart_quantity" action="http://www.outdoorlivingtablecloths.com/oltz/index.php?main_page=product_info&cPath=6&products_id=10&action=add_product" method="post" enctype="multipart/form-data"> |
I am not sure the purpose of this code within your web site, but since the myContactForm.com has been added before the above form tag is being closed it is rendering the form non-functional. Instead of submitting the form data to the myContactForm.com script for processing, it is sending it to the 'action' URL of the above form tag.
In order to solve this, you need to close the above form tag before inserting the myContactForm.com code. This can most likely be solved by adding a </form> directly before the myContactForm.com code.
Nick Ladd
myContactForm.com |
|