Jquery ile bir php belgeye 2 değişkenler geçmek için nasıl

1 Cevap php

Hello I have two text inputs which get their values from a datepicker. What I want to do is when user selects the two dates script pass these two values to a php document in which I make some checks and I return some html.

İşte ben yapmaya çalışıyorum budur:

(# Ve $ 2 giriş metinler)

$(document).ready(dateinput_change);
  function dateinput_change(){
    $('#to').change(check_availability);
    $('#from').change(check_availability);
  }
  function check_availability(){
    var to=$('#to').attr('value');
    var from=$('#from').attr('value');
    $.get("get_availability.php?to="+ to +"&from="+ from, show_availability);
  }
  function show_availability(available){
    $('#availability').html(available);
  }

1 Cevap

Ben ajax yöntemi kullanma eğiliminde. Ama aşağıdaki yazabilirsiniz.

 $.ajax({
          type: "GET",
          url: "get_availability.php",
          data: "to=" + to + "&from=" + from,
          success: show_availibility
     });