Copy and paste to notepad and name it contact.php
Edit down below in the code where it says
youremail@yoursite.com. Also edit where it says
Email Title which will be the title of the email. That's about it. No mysql involved at all

. You can even change the html to match your site.
PHP Code:
<center><h1><b>Contact Us</b></h1><br><br>
<form action=contact.php?action=mail method=post>
Your Name:<input type=text name=name><br>
Suggestion:<input type=text name=comment><br>
<input type=submit value=Submit></center>
<?
if($action=='mail')
{
mail("youremail@yoursite.com", "Email Title", "Name: $name\nComments: $comment", "From: [email]youremail@yoursite.com[/email] <youremail@yoursite.com>");
echo "<strong><b>Thank you for contacting us.</b></strong>";
}
?>