November 2011
Intermediate to advanced
384 pages
13h 23m
English
All HTML form tags support the standard global attributes, described earlier in this appendix in the section “HTML Global Attributes.”
From a high level, an HTML form requires only an appropriately created <form> tag group. All other tags can be used only within this group.
When defining an HTML form, you must configure where the submitted data is to be sent to, which is the URL defined in the action attribute, and how it is to get there, which is the method attribute. After that, you still need to be concerned with the CGI program that will be accepting the form input so that you can process the user’s form submission request.
<form action='URL' method='method'> </form>
Several ...
Read now
Unlock full access