Skip to main content

Why Json is null in this situation?



I'm trying to return a JSON encoded array from a PHP page via ajax. here's my code from the calling page










$('#test_load').click(function(){

$.ajax({

type:"POST",

url:'/actions/admin_load.php',

dataType: 'json',

asynch:false,

data:"action=4",

success: function(json) {

alert("we're back");

alert(json.a);

}

});

});










here's my php code







//return json array

case "4" :

$str2 = "HELLO";

$arr = array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);

$str = json_encode($arr);

echo $str;



break;










I keep getting "json is null". Any suggestions would be much appreciated


Comments

  1. I think you should try "catch" the variable

    $action=$_POST['action'];
    then us it in switch
    case "$action" : ....

    ReplyDelete
  2. You should set HTTP header "Content-Type" in your PHP script:

    header('Content-type: application/json')

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?