I am trying to send a variable with jQuery's getJSON function but it doesn't seem to be going through, I am also unsure of how to get the variable I have just sent in the waiting PHP file, do I just reference it via the name I sent it as, for instance if I send a variable called 'test', can I get it like this, $_POST['test'] on the other side? or how exactly would that work?

I am trying to populate a drop down list using the method below, any advice on improving the code would be greatly appreciated!

Here is what the PHP returns:

[{"city":"One"},{"city":"Two"},{"city":"Three"},{"city":"Four"}]

jQuery:

//get the cities
$("#province").live('change', function(){
    var test = $('#province').val();
    //alert(test);

    $.getJSON("cities.php", test, function(data){

    //clean out the select list
    $('#city').html('');

        //run the loop to populate the drop down list
        $.each(data, function(i, data) {
            var city = data.city;     

            $('#city').append(
                $('<option></option>').html(city)
            );
        });
    });
});

PHP:

$province = $_POST['test'];

//mySQL query here

$myarray = mysql_fetch_array($query, true);
$string = explode(',', $myarray['cities']);

foreach($string as $key=>$value) {
    $string[$key] = array('city'=>$value);
}

$json = json_encode($string);
echo $json;

What could I be doing wrong?

Thanx in advance!

link|improve this question

Nvm, got it working, will post my fix below. – Odyss3us Sep 10 '10 at 11:35
feedback

1 Answer

up vote 3 down vote accepted

A couple of things, first, getJSON is a get ajax call. So, you should be expecting the data you pass using getJSON to end up in $_GET and obviously $_REQUEST, but not $_POST. Secondly, you have to pass an object which describes a map of data which will be reflected in the associative array, $_GET.

So your code should read...

$.getJSON("cities.php", { test: $('#province').val() }, function (data) {

with that, you can access on PHP side as $_GET['test']

A few improvements I can give... (untested)

//get the cities
$("#province").live('change', function(){

    $.getJSON("cities.php", { test: $('#province').val() }, function(data){

        if(!data.ok) {
            alert('Error getting cities. Please try again later.');
        }

        var markup = '', len = data.cities.length;

        for(var i = 0; i < len; i++) {
            markup += '<option>' + data.cities[i] + '</option>';
        }

        $('#city').html(markup);

    });

});

and php

$province = $_POST['test'];

//mySQL query here

$myarray = mysql_fetch_array($query, true);
$cities = explode(',', $myarray['cities']);

echo json_encode(array(
    'ok' => true,
    'cities' => cities
));

Good luck.

link|improve this answer
Thanx, I figured that out just after I posted the question, it was staring me right in the face, I guess stepping back and just looking at the code did the trick! But thanx alot for your reply, you get the tick! :) – Odyss3us Sep 10 '10 at 11:46
:) thanks, posted some improvements (IMO) as you requested – Shrikant Sharat Sep 10 '10 at 11:49
Any idea why that might not work in IE? The drop down list is populating, just not in any of the IE's. :/ – Odyss3us Sep 10 '10 at 11:51
No idea, my knowledge does not include IE quirks/features (yet) ;) – Shrikant Sharat Sep 10 '10 at 12:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.