I want a place on my site where ppl can enter there name , E-mail address and a comment and press Submit and it will be sent to me, and they will be taken to a thank you screen. i have it nearly working , where they enter the info and when they press Submit they are taken to the Thank you screen , but the E-mail isnt sent to me , heres the code i'm useing , can u see anything wrong ??
<form name="form1" method="post" action="thankyou.html">
<!-- e-mail address of the person handling this form --!>
<input type=hidden name=EMAIL VALUE="[email protected]">
<table width="29%">
<tr>
<td width="35%">Name</td>
<td width="65%"><input name="Name" type="text" id="Name"></td>
</tr>
<tr>
<td>E-mail</td>
<td><input name="EMAIL" type="text" id="EMAIL"></td>
</tr>
<tr>
<td>Comments</td>
<td><textarea name="comments" cols="45" rows="6" id="comments"></textarea></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="Submit">
<input type="reset" name="Submit2" value="Reset"> </td>
</tr>
</table>
</form>
Any help is greatful
<form name="form1" method="post" action="thankyou.html">
<!-- e-mail address of the person handling this form --!>
<input type=hidden name=EMAIL VALUE="[email protected]">
<table width="29%">
<tr>
<td width="35%">Name</td>
<td width="65%"><input name="Name" type="text" id="Name"></td>
</tr>
<tr>
<td>E-mail</td>
<td><input name="EMAIL" type="text" id="EMAIL"></td>
</tr>
<tr>
<td>Comments</td>
<td><textarea name="comments" cols="45" rows="6" id="comments"></textarea></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="Submit">
<input type="reset" name="Submit2" value="Reset"> </td>
</tr>
</table>
</form>
Any help is greatful

Comment