This question has already been answered:
- What is input for type = “hidden” for? 2 answers
Hello! Help to understand the code. I began to learn php based on the lessons of Popov, everything is clear, but in the HTML code of the example site, this piece is not clear:
<div class="formm" width:"80%"> <p class="form3">Подписывайтесь на нашу рассылку и получайте свежие уроки, статьи и новости, прямо в свой почтовый ящик!</p> <form action="" method="post" name="SR_form" target="_blank"> <input type="hidden" name = "version" value="1"> <input type="hidden" name = "tid" value="34769"> <input type="hidden" name = "uid" value="27025"> <input type="hidden" name = "charset" value="windows-1251"> <input type="hidden" name = "lang" value="1"> <input type="hidden" name = "did[]" value="9267"> <p class="form1">Имя на русском:</p> <input type = "text" name = "field_email" size = "20" value = "" maxlength = "50" style: border = "1px" #C5C5C5> <p class="form1">Email адрес:</p> <input type = "text" name = "field_email" size = "20" value = "" maxlength = "50" style: margin = "0px"; padding = "0px"> <p "style = margin:5px; margin-top:"10px"; padding:0px;"> <input type = "submit" name"SR_submitButton" value = "Подписаться" style = "font-family:Verdana, sans-serif" > </p> </form> </div>
Namely:
<input type="hidden" name = "version" value="1"> <input type="hidden" name = "tid" value="34769"> <input type="hidden" name = "uid" value="27025"> <input type="hidden" name = "charset" value="windows-1251"> <input type="hidden" name = "lang" value="1"> <input type="hidden" name = "did[]" value="9267">
Is this some kind of invisible field? What is it for?
And in CSS code this moment is not completely clear:
html>body #coolmenu a{ width: auto; }
probably, it means "in body tags"? Thank.