Title: Image Button
URL: http://www.activejump.com/m-6.shtml
Email: webmaster@activejump.com
Introduction
Image buttons are buttons that when clicked on, will send a piece of information (the value of the picture) to the
CGI script.
Image Button
The tag to put an image button on your web site is <INPUT TYPE="IMAGE" SRC="URL" NAME="X" VALUE="Y">. URL is replaced with
the internet address of the image you want to show up. X is replaced with the name of the button. Y is replaced with the
value of the button.
|
index.html - Notepad |
....<BODY>
<FORM METHOD="POST" ACTION="script.cgi">
<INPUT TYPE="IMAGE" SRC="yes.gif" NAME="button1" VALUE="Yes, I liked it.">
<INPUT TYPE="IMAGE" SRC="no.gif" NAME="button2" VALUE="No, I did not like it.">
</FORM>
</BODY>....
|
|
|
My Homepage - Microsoft Internet Explorer |
|
|
|