HTML/CSS/Form Attributes/method

Материал из Web эксперт
Перейти к: навигация, поиск

"method" defines how to send the form data to the server

    
<HTML>
<BODY>
<form name="form1" method="post" action="">
   <input type="text" 
          cols=50 
          size=50 
          value="This is one element of the form.">
</form>   
</BODY>
</HTML>