اجرا
1264 x 150
1
2
<html>
3
<body>
4
<h1>input type="hidden" attribute example</h1>
5
<form action="/action_page.php">
6
<label for="fname">write you'r First name:</label>
7
<input type="text" id="fname" name="fname"><br><br>
8
<input type="hidden" id="custId" name="custId" value="2023">
9
<input type="submit" value="Submit">
10
</form>
11
<p>The field information will not be shown to the user but will be sent at the time of submission.</p>
12
</body>
13
</html>