Reset and Submit Buttons
The controls for reset and submit functions are built right int186, 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
Figure 5-12 shows how the value attribute determines the information that appears within the 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. Reset and submit buttons are created automatically.

Figure 5-13. Customizing reset and submit buttons.
