I have a form with a text field where some text is entered and is sent across using the GET method. But instead of a traditional submit button I'm using an image and I want that to do the function of the submit button.
A simple <a href="file.php"><img src="image"></img></a> can make the image link to the next page but the value is obviously not sent with it (which im trying to send with GET method)
How do I do this?