here i'm writing a small example.
edit it for your requirment
form.htm
<form method="post" action="formmail.php3">
Name : <input type="text" name="name"><br>
Email : <input type="text" name="email"><br>
<input type="submit" name="submit" value="submit"><br>
</form>
formail.php3
<?php
if($submit){
$message="Form Informations : n";
$message.="Name :$namen";
$message.="Email :$emailn";
mail("your@email.com","Feedback form",
$message,
"From : $emailn Reply-to: $email");
echo "Your feedback form has been successfully processedn";
}
?>
check it out php manual for an another example.
------------------
SR -
shiju.dreamcenter.net
"The fear of the LORD is the beginning of knowledge..."