Mysql
 sql >> Database >  >> RDS >> Mysql

Inserimento e recupero di dati in MySQL utilizzando PHP tramite Ajax

$("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
        }
    });
});

Quando ricevi i dati nello script php, esegui una query sul database e ottieni il risultato

spero che questo possa aiutare