Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

AJAX या jQuery का उपयोग करके एक HTML अनुक्रमणिका पृष्ठ में एक PHP क्वेरी फ़ाइल लोड करें

$(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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. क्या मुझे ON DELETE CASCADE का उपयोग करना चाहिए:निर्भर =>:नष्ट, या दोनों?

  2. मास्टर रिकॉर्ड प्राप्त करने के लिए उन्नत मैसकल क्वेरी यदि चाइल्ड रिकॉर्ड की विभिन्न पंक्तियों पर दो स्थितियां मेल खाती हैं

  3. जब यह NULL हो तो MAX फ़ंक्शन के साथ 0 कैसे सेट करें?

  4. JOOQ के DSL.val () के लिए कस्टम कनवर्टर का उपयोग करना

  5. क्या Django मॉडल MySQL फ़ंक्शंस का उपयोग कर सकते हैं?