recorrer - Conversión de matriz de resultados de PHP a JSON
Quiero convertir mi matriz de resultados al formato JSON en PHP. Aquí está mi código:
$row = mysql_fetch_array($result)
Quiero convertir $row
a formato JSON y pasar los datos JSON a un plugin jQuery.
$result = mysql_query($query) or die("Data not found.");
$rows=array();
while($r=mysql_fetch_assoc($result))
{
$rows[]=$r;
}
header("Content-type:application/json");
echo json_encode($rows);