В этом уроке мы рассмотрим работу с формами.
Нарисуем простую форму
<form id="form1" name="form1" method="post" action=""> <p> <label for="myinput"></label> <input type="text" name="myinput" id="myinput" /> </p> <p> <input type="submit" name="go" id="go" value="Отправить" /> </p> </form>