Mysql
 sql >> база данни >  >> RDS >> Mysql

Как да получите идентификатор на елемент в PHP променлива

Това е като вашия въпрос:ajax публикация с jQuery

Ако искате всичко това в един файл (публикуване в активен файл), ето какво ще ви трябва като цяло:

<?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. актуализиране на таблица с външен ключ

  2. MySQL ИЗБЕРЕТЕ LIKE или REGEXP, за да съпоставите няколко думи в един запис

  3. Множество броя в CakePHP

  4. MYSQL деактивира автоматичното подрязване

  5. Промените в my.cnf не влизат в сила (Ubuntu 16.04, mysql 5.6)