There are hundred's of form processing examples out there, but here is a quick start:
<?php
if($submit){
$input_1=$_POST['input_1'];
// list all your form fields above...
$name = $your_name;
$to = "your email here";
$subject = "Whatever subject you want";
$body = "Hello
Somebody used your form. They entered this:
$input_1
etc...
All the best,
$your_name
$your_email
";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: ".$your_name." <".$your_email.">\r\n";
mail($to, $subject, $body, $headers);
}
else{
?>
<form method="post" action="<?php echo $PHP_SELF?>">
<!-- put your form table in here --!>
</form>
<?php
}
If that doesn't make sense, just google for a form processing script that emails the results and pick it apart...