$("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 får data i php-skriptet gör en fråga till databasen och få ditt resultat
hoppas detta skulle hjälpa