您只需要向您的数据库发出 MySQL 请求:
(这是简单的代码,没有优化)
// Make a MySQL Connection
mysql_connect("localhost", "admin", "1admin") or die(mysql_error());
mysql_select_db("test") or die(mysql_error());
// Retrieve the data from the "example" table
$result = mysql_query("SELECT products, categories FROM example")
or die(mysql_error());
// store all the records of the "example" table into $rows[]
while($ds = mysql_fetch_array( $result )) {
$rows[] = $ds
}
有了这个,你就有了一个$rows
包含数据的数组:
在此之后,您可以将数据输出为 JSON:
echo json_encode($rows);
我希望这会对你有所帮助。