Hi,
I have a PHP form with multiple submit buttons eg:
<input type="submit" name="Action" value="Add" >
<input type="submit" name="Action" value="Delete" >
<input type="submit" name="Action" value="Update" >
My problem is when user hits the return key in Firefox the php script assumes the first button was submitted and in IE the scripts does not recognize any submit button if the return key is pressed.
Any suggestion to solve this problem both in firefox an IE?