このようにボタンの値を変更する必要があります
<button type="submit" name="send" value="delete"> delete </button>
<button type="submit" name="send" value="update">update</button>
次に、「delete.php」ページで、どれを使用するかを確認します
if($_POST['send']=='update')
{ UPDATE table_name SET id='Your_ID' }
else
{DELETE FROM table_name WHERE id='Your_ID'}