Hey Guys,
I just set up a contact form on my site and used an image as the "send" button. When I get an email from the form, I get x= some number and y= some number. So the form is sending the coordinates where the user clicks on the image over the email but I receive no other information. I obviously want the email address and message info and not the image coordinates. Thanks Guys
<div class="contactform">
<form action="FormToEmail.php" method="POST" name="contactform" id="form1">
<h5>Your Email</h5>
<div class="form"><input type="text" value=""/></div>
<h5>Your Message</h5>
<div class="textarea-box">
<textarea cols="10" rows="10"></textarea>
<div class="alignright"> <input type="image" src="images/sendbtn.jpg">
</div>
</div>
</form>
I appreciate and help!