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

PHP वेरिएबल में एलिमेंट आईडी कैसे प्राप्त करें?

यह आपके प्रश्न की तरह है:jQuery के साथ AJAX पोस्ट

यदि आप यह सब एक फ़ाइल में चाहते हैं (सक्रिय फ़ाइल पर पोस्ट करना) तो आपको सामान्य रूप से इसकी आवश्यकता होगी:

<?php 
  // Place this at the top of your file
  if (isset($_POST['id'])) {
    $newID = $_POST['id'];  // You need to sanitize this before using in a query

    // Perform some db queries, etc here

    // Format a desired response (text, html, etc)
    $response = 'Format a response here';

    // This will return your formatted response to the $.post() call in jQuery 
    return print_r($response);
  }
?>

<script type='text/javascript'>
  $(document).ready(function() {
    $('.myElement').click(function() {
      $.post(location.href, { id: $(this).attr('id') }, function(response) {
        // Inserts your chosen response into the page in 'response-content' DIV
        $('#response-content').html(response); // Can also use .text(), .append(), etc
      });
    });
  });
</script>

<span id="1" class="myElement"></span>
<span id="2" class="myElement"></span>

<div id='response-content'></div>

यहां से आप प्रश्नों और प्रतिक्रियाओं को अनुकूलित कर सकते हैं और प्रतिक्रिया के साथ आप क्या करना चाहेंगे।



  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 में textareas से एकाधिक पंक्ति कैसे सम्मिलित करें

  2. SQL इंजेक्शन से दूर रहकर PHP वैरिएबल से MySQL में NULL वैल्यू कैसे डालें?

  3. MySQL लोड डेटा इन्फाइल

  4. MySQL 4.0 में क्रिएटेड और लास्ट अपडेटेड टाइमस्टैम्प कॉलम दोनों का होना

  5. मुझे 'अपरिभाषित ऑफ़सेट:0' क्यों मिलता है?