Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Einfügen und Abrufen von Daten in MySQL mit PHP über 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
        }
    });
});

Wenn Sie die Daten im PHP-Skript erhalten, stellen Sie eine Abfrage an die Datenbank und erhalten Sie Ihr Ergebnis

Ich hoffe, das würde helfen