JQuery ile AJAX ile Gerçekten garip PHP davranış

0 Cevap php

Eh, benim sorunları biraz garip olduğunu,

Ben sadece bir numara almak için bir AJAX isteği var.

That number is printed on: getMoney.php. On index.php i have the AJAX request.

Ajax Kodu:

function getMoney(selected)
        {
            if(selected.value != -1)
            {
                // Obtener presupuesto via AJAX
                $(document).ready(function(){
                    $.ajax({
                            url: "getMoney.php",
                            async: true,
                            success: function(datos){
                                //My action
                            }
                    });
                });
            }
        }

Ben bir Combobox HTML üzerinde bir değeri değiştirdiğinizde fonksiyon denir

<select name="area_id" onchange="getMoney(this);">

Well... My problem: If i write down the numbers on getMoney.php (mannualy) its works perfectly, the AJAX's get it and the action is done, but when i get the numbers from my database i just get 0. I open mannualy too the getMoney.php, and the numbers ARE THERE! even if i get it from the Database.

Ne oldu?

0 Cevap