sql >> Database >  >> RDS >> Mysql

JSON retourneren vanuit MySQL met kolomnaam

Gebruik mysqli_fetch_assoc()

Hier ga je

$jsonData = array();
if(mysqli_num_rows($result) > 0){
while ($array = mysqli_fetch_assoc($result)) {
    $jsonData[] = $array;
}
$json = json_encode($jsonData);
echo stripslashes($json);
}


  1. Authenticatie met oud wachtwoord wordt niet meer ondersteund, gebruik wachtwoorden in 4.1-stijl

  2. Meerdere rijen samenvoegen tot één kolom in MySQL

  3. Inleiding tot auto_explain:hoe trage Postgres-queryplannen automatisch te loggen

  4. Hoe JDBC-configuratie te laden vanuit het eigenschappenbestand Voorbeeld