hi...
this is the form that i've created...what php coding i shld add to let my visitor submit this application form to my email?
<form name="form" method="post"
action="mailto:zzz@yahoo.com.sg" enctype="text/plain">
<table>
<tr>
<td>Name:</td>
<td>
<input type="text" name="Name" size="35">
</td>
</tr>
<tr>
<td>Email:</td>
<td>
<input type="text" name="email" size="35">
</td>
</tr>
<tr>
<td valign="top">description:</td>
<td>
<textarea rows="4" cols="30" name="description"></textarea>
</td>
</tr>
<tr>
<td>Gender:</td>
<td>
<input type="radio" name="sex" value="M"> Male.
<input type="radio" name="sex" value="F"> Female.
<input type="radio" name="sex" value="both"> Both.
</td>
</tr>
<tr>
<td></td>
<td>
<input type="Submit" VALUE="Submit">
</td>
</tr>
</font>
</table>
</form>