Step
1:: Make a page called contact.php and paste this code into it.
<form
action="contactme.php" mehod="post">
<p align="center">
<b><font size="2" face="Verdana">Name: <input
type="text" name"username" size="30"/>
<br>
<br>
Email: <input type="text" name="useraddr" size="30">
<br>
<br>
Message: <textarea name="comments" cols="30" rows="5">
</textarea>
<br>
<br>
<input type="submit" value="Send Form"> </font></p>
</form></b>
Step
2:: Make a new page and paste the code below into it and name
it contactme.php
<?PHP
#Where you want the email to go
$to = "Youremail@yoursite.com";
#subject
of the message, change this
$re = "Feedbackfromcontactpage";
#message
from the feedback form, don't touch this
$msg = $comments;
#send
the mail, don't edit this
mail($to,$re,$msg);
?>