Hi,
I'm trying to replace the good old Submit button on a form with an image.
My HTML is this:
<input type="image"
src="../images/ok_button.jpg" border="0"
name="submit">
The way that I understand this is that when the image is clicked, it should trigger the form action.
The PHP statement that I have at the beginning of the app is:
if(isset($submit)):
This should just check to see if the variable $submit is set.
However, it doesn't appear to be set as the required event never triggers.
What am I doing wrong?
Cheers,
Stuart