HTML Advanced Functions
|
Home
|
Agenda
|
Next
|
FORM - HTML Forms
Appearance:
<FORM> </FORM>
Attributes:
ACTION=URL, METHOD=get|post, ENCTYPE=string
The computer equivalent of paper forms and applications
Commonly used for surveys, on-line order forms and feedback
Two items are sent when you press the SUBMIT button:
Information you typed in.
Information which tells the server the name of the program to invoke to process the information.
The tricky part is creating the ACTION portion on the server
Let's look only at the client-side for now...
|
Home
|
Agenda
|
Next
|
T10D020