I currently have two image submit buttons. The code generated looks like
so:
<input type="image" src="button_in_ cart.gif" border="0" alt="Add"
title="Add" name="btn_cart" value="buy">
<input type="image" src="modify.gif " border="0" alt="modify"
title="modify" name="btn_modif y" value="modify">
In mozilla everything works great, but in Konqueror and MSIE the if
statement I'm using to detect which button was press does not work.
if (isset($HTTP_PO ST_VARS['btn_cart'])){ do stuff }
Does anyone know how to fix this without resorting to javascript?
thanx
-ryan
so:
<input type="image" src="button_in_ cart.gif" border="0" alt="Add"
title="Add" name="btn_cart" value="buy">
<input type="image" src="modify.gif " border="0" alt="modify"
title="modify" name="btn_modif y" value="modify">
In mozilla everything works great, but in Konqueror and MSIE the if
statement I'm using to detect which button was press does not work.
if (isset($HTTP_PO ST_VARS['btn_cart'])){ do stuff }
Does anyone know how to fix this without resorting to javascript?
thanx
-ryan
Comment