din jquery ville være noget som dette.
$("#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
da PHP-funktionen får et JSON-objekt. du skal lave en JSON-afkodning for at få arrayet.... se JSON-afkodning ... brug dette array til at oprette din forespørgsel som ..
delete from SalesLT.Customer
where CustomerID in (1,2,3,4);