Hi, if you use javascript to validate and then submit you will not be able to use method="post" in:
<form id="contact_form" name="contact_form" method="post" action="to_contact_table.php">
change it to method="get"
You will also have to change your javascript submit link...
Hi, if you use javascript to validate and then submit you will not be able to use method="post" in:
<form id="contact_form" name="contact_form" method="post" action="to_contact_table.php">
change it to method="get"
You will also have to change your javascript submit link...