How would I make it so when an Image is clicked (not a simple form button), it submits a form. Usually for the regular submit button it would be <input type="submit" value="Submit" name="submitbutton>
Here is an example:
<input type="image" name="submit" src="yourbutton.gif">
Originally posted by bladx Here is an example: <input type="image" name="submit" src="yourbutton.gif">
but be aware that you can't use value="something". also you don't get a var 'submit' but 2 vars 'submit_x' and 'submit_y'
Originally posted by inter_joe but be aware that you can't use value="something". also you don't get a var 'submit' but 2 vars 'submit_x' and 'submit_y'
very true and sometimes very annoying...