put this in your php page:
<form action="test.php" enctype="multipart/form-data" method="POST">
if you submit then, then you can get the variables from your form by the name of the input types adding a $
like: <input type="text" name="texthere">
then your value is stored in this variable: $texthere.
I hope this helps you.