previous
|
start
|
next
HTML Forms
Place all elements that belong to a form into a
form
element
<form action="timezone.jsp" method="POST"> . . . </form>
An HTML form must specify the URL of the server program that processes the form data
The
action
attribute contains the URL
Set the
method
attribute to POST because it has no length limit
previous
|
start
|
next