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

Come restituire i dati recuperati da MySQL in un file php come JSON?

Dato che solo una user_spec viene restituita la riga è possibile utilizzare il built-in json_encode funzione:

<?php
$username = "user";
$password = "********";
$hostname = "localhost";    
$dbh = mysql_connect($hostname, $username, $password) 
    or die("Unable to connect to MySQL");

//print "Connected to MySQL<br>";

$selected = mysql_select_db("spec",$dbh) 
    or die("Could not select first_test");

$query = "SELECT * FROM user_spec"; 
$result=mysql_query($query);

echo json_encode(mysql_fetch_assoc($result));

?>

Dovrebbe fare il trucco.

Anche se stai usando una versione precedente di PHP, puoi trovare una funzione adatta nei commenti degli utenti in json_encode Pagina del manuale PHP da utilizzare al suo posto.