HTML/CSS/Form Attributes/method — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 08:17, 26 мая 2010
"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>