You must give a name to all elements from the form.Like:
input type=text name="firstInput"
the from php
$firstText=$HTTP_GET_VARS['firstInput'];
if the form was submited with the POST method (method=post in form theclaration tag)
the will be
$firstText=$HTTP_POST_VARS['firstInput'];
if the trackvars value is set to "on" in php.ini then you will have a variable $firstInput with the value already declared.(Not recomended to use this).