I am not sure if it is necessary for the form to be emailed to you but you can just use this:
Lets say that you have a php script named rcv.php which will save the to a mysql table or a text file then your form should be like:
<head>
<title>New Page 1</title>
</head>
<body>
<form method="POST" action="rcv.php">
<p>Name <input type="text" name="T1" size="20"></p>
<p>Email Address: <input type="text" name="T2" size="20"></p>
<p>Comments: <textarea rows="4" name="S1" cols="35"></textarea></p>
<p><input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>
</body>
When your php rcv the for it will have the following vars
$T1 which is name
$T2 which the email address
$S1 which is the comments
Note that T1, T2 and S1 are the name of the text box of the form. Look at the above form.
OOzy