votre jquery serait quelque chose comme ça.
$("#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
puisque la fonction PHP obtiendra un objet JSON. vous devrez faire un décodage JSON pour obtenir le tableau... voir Décodage JSON ... utilisez ce tableau pour créer votre requête comme..
delete from SalesLT.Customer
where CustomerID in (1,2,3,4);