sql >> データベース >  >> RDS >> Mysql

ajaxまたはjqueryを使用して、phpクエリファイルをhtmlインデックスページにロードします

    $(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. express&mysqlを使用したNode.js API-レコード数、ページ番号などを取得し、ページネーションを提供します

    2. タイムスタンプ列をJPAタイプにマップする方法は?

    3. ゼロのみを含む列を検索する

    4. PythonMySQLの間違ったアーキテクチャエラー