No, your form fields stay the same no matter what register_globals is set to. What changes is how you call it in your script.
So, your input would look like this:
<input type="text" name="variable">
and you'd call it in your script like this:
$_POST['variable']
Of course, this assumes that your have method="post" in your form tag, if not then call it like this:
$_GET['variable']