Forms are quite easy in php, just set a form up like you normaly would.

Then the php just inpritys it and sends it with to functions

$randomVAr = $_POST['name-of-input'];

whcih just sets $randomVAr to contin the data inputed by the input. Do as much as you like

and at teh end of script for interpting just send to your self

with
$message = "Emailed from $varforemail \n about $anotehrvarible \n for $yetanotehr one becuse of $finalvar";
mail( "your email", "email title", $message" );


The $vars conting the inputed data, exspet you have to set the var, befor you can write it. and the $message varible just is how its diplayed


( \n = new line btw)