Hi,
My problem is very annoying.
I have this image as a button :
<input id="submitbutton" type="button" class="submitbuttonoff" value="" onClick="document.myform.submit();" />
and when it is pressed, I call this :
if (isset($_POST['submitbutton'])) {
call a function
}
Now, the problem I am having is that the form simply does not run the function because it seems that $_POST['submitbutton'] is not being detected.
But if I change this image button to a standard submit button it works perectly fine!!!
Can anyone please advise why my image button is not submitting to the page correctly?
Yours in frustration.
K