Code:
<form action="gdform.asp" method="post">
<input type="hidden" name="subject" value="Form Submission" />
<input type="hidden" name="redirect" value="thankyou.html" />
<p>Name:<br>
<input type="text" name="Name" size="40" /></p>
<p>E-mail Address:<br>
<input type="text" name="email" size="40" /></p>
<p>Comments or Inquiries:<br>
<textarea name="comments" cols="70" rows="8"></textarea></p>
<p><input type="submit" name="submit" value="Submit"/>
</p>
</form>
1) My understanding is that once the user hits the "Submit" button, the information entered will be sent to the server-side scripting language specified in the "<form action>" tag, in this case "gdform.asp". Correct?
2) I want whatever information entered to be sent to a specific email. My understanding is that I have to log-in to my GoDaddy account where I purchased the domain for this site, and under some "Settings" page, specify the email there?
3) If a user enters invalid information, how do I make a pop-up/error message stating just that?
Thanks in advance!