$q = mysql_query("SELECT kind, COUNT(*) as votes FROM domitory GROUP BY kind");
//$votes = array();
$votes = array();
while ($row = mysql_fetch_assoc($q)) {
$votes[$row['kind']] = $row['votes'];
}
array("kind"=>$kind, "count"=>$count);
//echo json_encode($votes);
$json_result = json_encode(array("result"=>$votes));
echo $json_result;
이런식으로 돌아가면
이렇게 출력됩니다.
{"result":{"man":"5","roop":"1"}}
근데 안드로이드에서 돌리면 어레이로 변환이 필요하다고 해서 봤더니
{"result":[{"man":"5","roop":"1"}]}
이런식으로 나와야하는건데 뭘 조절해야할지 감이 안잡힙니다.. ㅠㅠ