Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

Cách lấy id phần tử vào biến PHP

Điều này giống như câu hỏi của bạn: bài đăng ajax với jQuery

Nếu bạn muốn tất cả điều này trong một tệp (đăng lên tệp đang hoạt động) thì đây là những gì bạn cần nói chung:

<?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>

Từ đây, bạn có thể tùy chỉnh các truy vấn và phản hồi cũng như những gì bạn muốn làm với phản hồi.



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Làm thế nào để hack MySQL GROUP_CONCAT để tìm nạp một số hàng giới hạn?

  2. truy vấn cập nhật mysql với tham gia bên trong

  3. chèn hàng loạt giá trị danh sách với SQLAlchemy Core

  4. Làm cách nào để lấy múi giờ hiện tại của MySQL?

  5. Khi nào sử dụng công cụ lưu trữ CSV cho MySQL?