sure no problem. here's the 911... er i mean 411.
the form (what miseria posted) is the script that should be in your html file. this is what the user sees when they view your website and it has the boxes where they can type in their info.
now in "whatever.php", you have to have the script that you want to execute using the information that was put into the form. and where it says method="whatever", use method="post".
for example, say you have a form that asks for their name. they type in their name and press submit. then whatever that is typed into the box is sent to the .php file to execute. now in this script, you can use the information. ill show you how to make the page say "Hello, (person name)". heres the code for the html page where they would type in their name.
HTML:
<form name="name" action="name.php" method="post">
<input type="text" name="name" value="Insert Name Here">
<br>
<input type="submit" value="Submit">
</form>
here is the script that wud be in "name.php".
PHP:
<?php
$name=$_POST['name']; //define the variable that was sent via the form
$write="Hello, ";
$write.=$name; //make a variable of what you want to say
echo($write); //display what you want written
?>
now theyll see a page saying "Hello, NAME"
you can also do a LOT more with forms, and once you learn MySQL, it becomes invaluable. hope i helped. if you have any more questions, just ask.
(If this helped, please add reputation)