0
HTML
Please can someone help me with hidden controls in html and what it means please An example like <input type="hidden" name="bookmark" value="lyrics"/>
3 Réponses
+ 1
The <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.
Note: While the value is not displayed to the user in the page's content, it is visible (and can be edited) using any browser's developer tools or "View Source" functionality.
0
Is the hidden feature sometimes used for identification ?? Shaurya Kushwaha