Mysql
 sql >> Datenbank >  >> RDS >> Mysql

So erstellen Sie eine JSON-Antwort

Versuchen Sie mysql_fetch_assoc:

$json = array();
while ($row = mysql_fetch_assoc($result)) {
    $json[$row['uid']] = array(
       'lat' => $row['lat'],
       'lon' => $row['lon'],
       'loc' => $row['loc']
    );
}
echo json_encode($json);

Anstelle von mysql_ sollten Sie MySQLi oder PDO_MySQL verwenden.