Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In json.php:

$data = array ( "filename"  => array (), "datetime"  => array () );

The $data array is filled with some data from a loop.

In index.php:

$.ajax({
    url: "json.php",
    success: function(data){

        $.each(data, function(i, item) {
            console.log(data[i].filename);
        });



     }
});

Im trying to print all the filenames from my data object, but theyre undefined according to the console. What did i miss? Thanks

share|improve this question
plz accept one of the answers if it solved your problem, thx – ezmilhouse Apr 23 '11 at 15:14

3 Answers

on php site:

$data = array ( "filename"  => array (), "datetime"  => array () );
header('Content-type: application/json');
echo json_encode($data);
exit;

on js site:

$.ajax({
    url: "json.php",
    dataType: "json",
    success: function(data){

        $.each(data, function(i, item) {
            console.log(item.filename);
        });

     }
});
share|improve this answer

You should use json_encode($data).

share|improve this answer

I'm not a PHP developer, but have you checked data using Firebug because it's probably not JSON?

If you find out that it's a JSON string you should first do this

data = $.parseJSON(data);

And for the sake of brevity you could write

$.ajax({
    url: "json.php",
    success: function(data){
        data = $.parseJSON(data); // if needed
        $.each(data, function() {
            console.log(this.filename);
        });
     }
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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