Creating the Submit ButtonAll the information that your visitors enter won't be any good to you unless they send it to the server. You should always create a submit button for your forms so that the visitor can deliver the information to you. (You can also use images to submit form datasee page 276.) Figure 17.40. If you leave out the name attribute, the name-value pair for the submit button will not be passed to the script. Since you usually don't need this information, that's a good thing.
To create a submit button:
Tips
(X)HTML's button element lets you create prettier submit buttons. You can add an image, change the font, or even change the background color. That'll get them to submit that form! Figure 17.43. You can create a submit button with an image by using the button tag.
To create a submit button with an image: Tips
|