I created a Contact page using HTML and PHP that allows user to send an email to me. After the user fills in the form and clicks a button to send the email, he/she is taken to a confirmation page that says the email has been sent. The problem is that in IE, the PHP script to send the email automatically executes when the Contact page is loaded, sending a blank email to me, and showing the user the email confirmation page (the user never sees the Contact page because of this). Anyone know what the problem could be? This is the code from the .html page <form method="post" action="contact.php"> Name:<br> <input type="text" name="Name" size=40><br><br> Email Address:<br> <input type="text" name="EmailAddress" size=40><br><br> Subject:<br> <input type="text" name="Subject" size=40><br><br> Question/Comment:<br> <textarea name="Request" rows=4 cols=40></textarea><br><br> <input type="submit" value="Send"> <input type="reset" value="Reset"> Code (markup):