$("button_id").click(function () {
$.ajax({
url:"where you should post the data",
type: "POST",
data: the string you should post,
success: function (result) {
//display your result in some DOM element
}
});
});
Når du modtager dataene i php-scriptet, lav en forespørgsel til databasen og få dit resultat
håber dette ville hjælpe