$sth = mysqli_query($conn, "SELECT ...");
$rows = array();
while($r = mysqli_fetch_assoc($sth)) {
$rows[] = $r;
}
print json_encode($rows);
Функцията json_encode
изисква PHP>=5.2 и php-json пакет - както е споменато тук
ЗАБЕЛЕЖКА :mysql
е отхвърлен от PHP 5.5.0, използвайте mysqli
вместо това разширение http://php.net/manual/en/migration55.deprecated.php
.