Button type submit not working in IE6.0

ztech

New Member
Hallo Friends,I need a button with text on it in 2 lines. The length of the text is more than the space i have for it.:-) Image is not of my preference. I have used the following code\[code\] <tr> <td align="center"> <button type="submit" name="add_invoice" id="buttonstyle"> Add to Ready for<br /> Invoicing </button> </td> </tr> <tr> <td align="center" colspan="2"> <input type="submit" name="delete" value="http://stackoverflow.com/questions/3660005/Delete"> </td> </tr>\[/code\]This is working pretty good in IE 7.0. But in IE 6.0 eventhough i click the second button delete, in $_POST, it is returning the values of both the buttons.it has the value of [add_invoice] and [delete]. So i am not able to figure it out which one is clicked (in IE 6.0 Only).Please help me to understand this behaviour. Let me know if you know any other alternative.Thanks in advance!
 
Back
Top