Images as form submission buttons
|
Everyone is looking for a way to customize their forms. One of the coolest ways to do that is to use an image as the "submit" button. Now, instead of a plain old form button, users can click on your image to process your form. Consider this code:
<Form Method="post" Action="mypage.cgi">
<Input type="text" Size="10">
<Input type="image" name="submit" src="image.gif">
</Form>
Note: For this to work you will need to create an image, and have it uploaded where you can access it, just like any other image. You will also need to change the name of the "mypage.cgi" file to whatever the name of your file is. That's all there is to it!