What is hidden field in HTML ? Explain it
In : MCA Subject : Open Source Web Based ProgrammingThe <input type="hidden"> defines a hidden input field.
A hidden field let web developers include data that cannot be seen or modified by users when a form is submitted.
A hidden field often stores what database record that needs to be updated when the form is submitted.
<input type="hidden" id="custId" name="custId" value="3487">