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

indlæs en php-forespørgselsfil i en html-indeksside ved hjælp af ajax eller jquery

$(document).ready(function() {

jQuery.ajax({
        type: "POST",  //  this is post request u can also do get request
        url: "query.php", 
        dataType: "text",

        success: function (response)  // this is the response from  url: "query.php",
        {
          alert(response);    //alert responce from  query.php and here you can do 
                              //                   whatever u like with response.
        },
        error:function (xhr, ajaxOptions, thrownError)
       {
          alert(xhr); // if any error function.

       }
});

});


  1. Hvordan RIGHT() virker i MariaDB

  2. Sådan gør du en del af teksten fed fra arraylist i Android

  3. MySQL-beholderen kan ikke køre initialiseringsscripts i Docker Compose

  4. En ny måde at personliggøre din PostgreSQL-overvågning med Prometheus