So if I had a form that included
<input name="user id" type="text" size="12" maxlength="12">
and the user had entered "user1" as the user_id and I setup a global variable "$USER_ID" to store what the user entered. They presseSUBMIT and in the confirmation screen desiced to change the user id. so they click EDIT to return to the original form.
Is this how I reset the values in the form?
<input name="user id" type="text" value="$USER_ID" size="12" maxlength="12">