youtjqueryはこのようなものになります。
$("#Submit1").click(function () {
var arr = new Array();
$("input:checked").each(function () {
arr.push($(this).attr("id"));
}); //each
$.ajax({
type: "POST",
url: "core/actions/delete_multiple.php",
data: arr ,//pass the array to the ajax call
cache: false,
success: function()
{ }
});//ajax
}); //each
}); //click
PHP関数はJSONオブジェクトを取得するためです。配列を生成するには、JSONデコードを実行する必要があります。
delete from SalesLT.Customer
where CustomerID in (1,2,3,4);