Hey I can actually answer this question 😃 LoL
When using a form , this is the syntax u need:
<form method="post" action="yadda.php">
// Insert your textboxes and stuff here
</form>
Where yadda.php is the file which you want to call, and knowing that yadda.php is in the same directory as the form!
This way, you call up the php-file. The names yu gave to the textboxes, radiobuttons and other form-stuff is then passed to yadda.php in a similar named string. Thus if you have a input that reads :
<input type=text name=adress>
Then the variabele posted for this textbox is called $adress
Hope you understand now 🙂