I am getting the following error with andoroid trying to return data from PHP
Error: Error parsing data org.json.JSONException: A JSONArray text must start with '[' at character 1 of
PHP SCRIPT:
<?php
#
header('Content-type: application/json');
print json_encode(array('name' => 'john'));
#
?>
THE RETURN:
09-07 08:49:04.740: INFO/result(704): {"name":"john"}
please help me
