PHP FULL TUTORIAL GUIDE by

PHP FULL TUTORIAL GUIDE by

Language: eng
Format: azw3
Publisher: MICHAEL NAHASHON
Published: 2016-01-15T00:00:00+00:00


Hidden Form Controls

Hidden form controls are used to hide data inside the page which later on can be pushed to the server. This control hides inside the code and does not appear on the actual page. For example, following hidden form is being used to keep current page number. When a user will click next page then the value of hidden control will be sent to the web server and there it will decide which page has be displayed next based on the passed current page.

Here is example HTML code to show the usage of hidden control:

<html>

<head>

<title>hidden form control</title>

</head>

<body>

<form>

<p>This is number 1</p>

<input type="hidden" name="pagenumber" value="1" />

<input type="submit" name="submit" value="Submit" />

<input type="reset" name="reset" value="Reset" />

</form>

</body>

</html>



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.