Fill-Out Form Example #2
This is another fill-out form example, with multiple text entry
fields.
Things you may want to note:
- Each text entry field is given a distinct
NAME
attribute.
- The query that results from this form looks like this:
"?entry1=blah&entry2=blargh&entry3=blorf" (assuming "blah"
had been typed into the first field, "blargh" into the second,
and "blorf" into the third).
- If nothing is typed into any of the fields, the corresponding
"name=value" pairs will still be present in the query, with the
value simply absent. So, if you type "blah" into the first field
and "blorf" into the third but nothing into the second, the query
is "?entry1=blah&entry2=&entry3=blorf".
Back to example 1 or forward to example 3.