Ok in my form, I have two submit buttons
Both of them are images.
1)
<input type="image" name="add_more_fields" src="images/add_more_fields.gif" alt="">
2)
<input type="image" name="Submit" src="images/continue.gif" alt="" tabindex="7">
If I replace the first input button with this <input type="button" name="add_more_fields">
the following condition in my PHP script is true:
if(isset($_POST['add_more_fields']))
else if I use this <input type="image" name="add_more_fields" src="images/add_more_fields.gif" alt="">
the condition is no longer true.
How come? Is this a PHP Bug? I would like to use an image instead of the plain button in my form. Please help someone! 🙁