複数の送信ボタンがあるフォームがあります。
各送信ボタンは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>