mysqlデータベースのデータを取得し、データベースと同様にそれぞれの場合に出力したいと思います。しかし、私がそれらを表示するとき"Vi tri cua nguoi dung: Array"
、データを見ずに単語を見るだけです。JSONを使用してテストすると、画面に次の結果が表示されます。
"[{" Kinhdo ":" 106.71246126888674 "," Vido ":" 10.78865449101134 "}]"
手伝って頂けますか?
<?php
mysql_connect("xxxx","xxx","xxx");
mysql_select_db("a4602996_lv");
$query_insert="select Kinhdo,Vido from VietMap where id = (select max(id) from VietMap)";
$sql = mysql_query($query_insert);
if(mysql_num_rows($sql)){
while($row=mysql_fetch_assoc($sql)){
$json[] = $row;
}
}
//print(json_encode($json).'<br/>');
print 'Vi tri cua nguoi dung: '.$json['Kinhdo'];
mysql_close();
?>