$("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 स्क्रिप्ट में डेटा प्राप्त करते हैं तो डेटाबेस से पूछताछ करें और अपना परिणाम प्राप्त करें
आशा है कि यह मदद करेगा