HTML basic tutorial form hidden fields
Hidden field
Function: A hidden field is an invisible box. Pass some value that you don't want others to see.
Use: Mainly used for PHP backend programs, such as: when modifying the content of a certain news, you need to pass the ID number of the news.
Grammar format: <input type = “hidden” name = “name” value = “default value” />
This will be frequently used in future projects , let’s do some understanding first