I am trying to use a gif instead of a regular submit button.
When I make the changes, it screws up my code. I have the form action going to itself and when I click on the gif to submit the values the user enters, nothing happens. When I change the gif back to a regular submit button, it works again. How can I get this working?
this is what works:
<INPUT type="submit" name="new" value="Send ticket">
This is what I want to work:
<INPUT type="image" src="images\submit.gif" name="new" value="Send Ticket">
The form action is set like this:
<FORM method="POST" action="<?php echo $PHP_SELF ?>">