Hope this helps, if not post your script and i can fix it. There are many ways to do this. Of coarse change the email to reflect your email
Code:
$subject = "Contact Form Entry";
$toemail = "youremail@email.com";
if($submit)
{
mail($toemail, $subject, $message."\nFrom: ".$fromname."<".$frommail.">");
}
?>
<html>
<head>
<title>Contact Us</title>
</head>
<form method="post" action="<? echo($PHP_SELF) ?>">
E-mail:<input type="text" name="frommail" size="25"> <br>
Your Name:<input type="text" name="fromname" size="25"> <br>
Your Message: <br>
<textarea cols="50" rows="5" name="message">Your Message ..</text> <br>
<input type="submit" value="Submit">
</body>
</head>
If you need an example to store info into a database I can also do that for you.