sql >> Database >  >> RDS >> Mysql

Meerdere variabelen doorgeven aan PHP met jQuery

POST AJAX-VERZOEK met JS / JQUERY. Het onderstaande is de syntaxis die ik gebruik voor al mijn AJAX-oproepen.

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

Code voor de PHP-pagina 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. Een gids voor database-automatisering met ClusterControl van verschillendenines

  2. com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException:dubbele invoer '' voor sleutel 'PRIMARY'

  3. Hoe een standalone Moodle te migreren naar een schaalbare configuratie van een geclusterde database

  4. Waarom komen de resultaten van een SQL-query niet terug in de volgorde die ik verwacht?