HTML <input> type Attribute
Example
<input type="hidden" id="myHidden" name="myHidden" value="1234">
Meaning
Provides control that is not displayed but whose value is submitted to the server.
A hidden field data that cannot be seen or modified by users when a form is submitted.
A hidden field is used for database record that needs to be updated when the form is submitted.
Standard Syntax
HTML: <input type="hidden">
XHTML: <input type="hidden" />
Advertisement