Check your php.ini file.
In php.ini-recommended file parameter "register_globals" is turned off by default. If you want to use variables with same name as <input> name, you will have to change value to "on".
Although, you can use $_REQUEST array. For example (if you had something like <input type="text" name="first_name">):
$first_name = $_REQUEST["first_name"];