April 2005
Intermediate to advanced
336 pages
6h 33m
English
The controls for reset and submit functions are built right into HTML, so you don't have to do much to get these working and even customized to a certain degree without ever touching images or style.
The reset button clears the form when it is clicked. The submit button submits the data in the form, which uses the information in the method and action attributes in the form element itself to send the data to the server for processing.
Example 5-11 shows how to create reset and submit buttons.
Example 5-11. Creating reset and submit buttons
<form method="get" action="http://www.myserver.com/cgi-bin/mailscript/"><input type="reset" value="reset" /><input type="submit" value="submit" /></form>
Figure 5-12 shows how ...
Read now
Unlock full access