$("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
}
});
});
phpスクリプトでデータを受け取ったら、データベースにクエリを実行して結果を取得します
これがお役に立てば幸いです