Hidden fields are generated by the processing script to store information gathered from an earlier form so that it can be combined with the present form's data.
To create hidden fields:
1.
Type <input type="hidden".
2.
Type name="label", where label is a short description of the information to be stored.
3.
Type value="data", where data is the information itself that is to be stored. It is often a variable from the form processing script (Figure 17.39).
Figure 17.39. When you create a hidden field, you use the variables from your script to set the value of the field to what the visitor originally entered.
4.
Type />.
Tips
It doesn't matter where the hidden fields appear in your form since they won't appear in the browser anyway. As long as they are within the opening and closing form tags, you're OK.
To create an element that will be submitted with the rest of the data when the visitor clicks the submit button but that is also visible to the visitor, create a regular form element and use the readonly attribute (see page 280).