I'm retrieving json from php to the mobile, the code is as follow
$a = array('name'=>'pop', 'age'=>'32', 'kids'=>array('tim', 'john') );
echo json_encode($a);
in the mobile I recieve the data fine, but upon parsing json and trying to access the "kids" elements using its keys it gives me an error. Here is the mobile code:
var json = this.responseText;
var response = JSON.parse(json);
alert(response.kids[0]);
The error :

this also occurs when trying to get "kids.length".. any help?
'name'='pop'should be'name'=>'pop'– Engineer Jul 9 '12 at 16:00