http://mindtoygames.com/contact.html
You can see I have an existing form there that came with the site, with this code creating it, I believe:
CODE
<form style="padding:0;margin:0 "> <table border="0" cellspacing="0" cellpadding="0" class="txt5" style="margin-left:10px ">
<tr>
<td valign="top" width="67" style="padding-top:4px "><b>Name</b> </td>
<td valign="top" style="padding-bottom:15px "><input name="Name" type="text" class="txt5" id="Name" style="width:148px;height:15px;border:1px solid #3BA7D6 "></td>
</tr>
<tr>
<td valign="top" width="67" style="padding-top:4px "><b>Email</b> </td>
<td valign="top" style="padding-bottom:15px "><input name="Email" type="text" class="txt5" id="Email" style="width:148px;height:15px;border:1px solid #3BA7D6 "></td>
</tr>
<tr>
<td valign="top" width="67" style="padding-top:4px "><b>Comments</b> </td>
<td valign="top" style="padding-bottom:5px "><textarea name="Message" class="txt5" id="Message" style="width:148px;height:36px;border:1px solid #3BA7D6;overflow:auto "></textarea></td>
</tr>
<tr>
<td valign="top" colspan="2" align="right" style="padding-right:10px "><a href="#" style="color:#F26522;font-size:12px"><b>Submit</b></a></td>
</tr>
</table>
</form>
<tr>
<td valign="top" width="67" style="padding-top:4px "><b>Name</b> </td>
<td valign="top" style="padding-bottom:15px "><input name="Name" type="text" class="txt5" id="Name" style="width:148px;height:15px;border:1px solid #3BA7D6 "></td>
</tr>
<tr>
<td valign="top" width="67" style="padding-top:4px "><b>Email</b> </td>
<td valign="top" style="padding-bottom:15px "><input name="Email" type="text" class="txt5" id="Email" style="width:148px;height:15px;border:1px solid #3BA7D6 "></td>
</tr>
<tr>
<td valign="top" width="67" style="padding-top:4px "><b>Comments</b> </td>
<td valign="top" style="padding-bottom:5px "><textarea name="Message" class="txt5" id="Message" style="width:148px;height:36px;border:1px solid #3BA7D6;overflow:auto "></textarea></td>
</tr>
<tr>
<td valign="top" colspan="2" align="right" style="padding-right:10px "><a href="#" style="color:#F26522;font-size:12px"><b>Submit</b></a></td>
</tr>
</table>
</form>
How do I set this up to accept any input in the boxes and e-mail it to me when the person clicks Submit? (Turn it into a contact form, essentially). Please help with how I modify this code, and PHP file code I may need.
Thanks!
Derek
