Mysql
 sql >> Database >  >> RDS >> Mysql

JSON codifica i risultati MySQL

$sth = mysqli_query($conn, "SELECT ...");
$rows = array();
while($r = mysqli_fetch_assoc($sth)) {
    $rows[] = $r;
}
print json_encode($rows);

La funzione json_encode richiede PHP>=5.2 e php-json pacchetto - come menzionato qui

NOTA :mysql è deprecato a partire da PHP 5.5.0, usa mysqli estensione invece http://php.net/manual/en/migration55.deprecated.php .