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

JQuery के साथ PHP में एकाधिक चर कैसे पास करें

JS / JQUERY का उपयोग करके AJAX अनुरोध पोस्ट करें। नीचे दिए गए सिंटैक्स का उपयोग मैं अपने सभी AJAX कॉल के लिए करता हूं।

var first = 'something';
var second = 'second';
var third = $("#some_input_on_your_page").val();


///////// AJAX //////// AJAX //////////
    $.ajax({
        type: 'POST',
        url:  'page_that_receives_post_variables.php',
        data: {first:first, second:second, third:third},
        success: function( response ){
            alert('yay ajax is done.');
            $('#edit_box').html(response);//this is where you populate your response
        }//close succss params
    });//close ajax
///////// AJAX //////// AJAX //////////

PHP पृष्ठ के लिए कोड page_that_receives_post_variables.php

<?php
$first = $_POST['first'];
$second = $_POST['second'];
$third = $_POST['third'];

echo 'now do something with the posted items.';
echo $first; //etc...
?>



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. MySQL में एक टेबल बनाएं

  2. नोड माइस्क्ल कॉल छोड़ने के बाद क्वेरी को एनक्यू नहीं कर सकता

  3. MySQL में महीने का अंतिम दिन कैसे प्राप्त करें

  4. एसक्यूएल प्रश्नों में एस्केपिंग वैल्यू (एसक्यूएल कनेक्टर के साथ सी #)

  5. Mysqldump क्रॉन और पासवर्ड सुरक्षा द्वारा लॉन्च किया गया