我有一个带有多个提交按钮的表单。
每个提交按钮都是一个IMG SRC
垃圾桶,表示基于 Web 的消息邮件收件箱中的消息的删除图标
确定单击了哪个提交按钮图标以便我可以编写 PHP/MySQL 代码来删除消息的最佳方法是什么?
if(!empty($_POST)){
// How do I figure out which submit button has been clicked to get the ID of the message to delete?
}
<form method="POST">
<input src="http://www.foo.com/img.png" id="button_1">
<input src="http://www.foo.com/img.png" id="button_2">
<input src="http://www.foo.com/img.png" id="button_3">
<input src="http://www.foo.com/img.png" id="button_4">
...
<input src="http://www.foo.com/img.png" id="button_100">
</form>