Page 1 of 1

form image button doesnt work in internet explorer

Posted: Mon Aug 10, 2015 4:06 pm
by jonnyfortis
i have a form with two buttons if one button is pressed it sends it to one payment method if the other is pressed it sends it to another payment method. this works fine in google chrome but not in firefox or internet explorer. if i try in in IE it stays on the same page

here is the form
<form action="<?php echo $editFormAction; ?>XC_SaveCartToTable=1" method="POST" name="form1" id="form1">
<input name="buttonClicked" type="image" src="images/paywithcard.jpg" value="1" />
<input name="buttonClicked" type="image" src="images/checkoutpaypal.jpg" value="2" />
</form>

Re: form image button doesnt work in internet explorer

Posted: Mon Aug 10, 2015 7:39 pm
by requinix
Change the method to GET and see what values are being passed (via the URL).