HTML/CSS/Form Attributes/method

Материал из Web эксперт
Версия от 08:17, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"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>