//连接数据库
$conn=mysqli_connect("localhost","root","","test");
mysqli_query($conn,"set names utf8");
//查询数据
$sql="SELECT * FROM articles";
$result=mysqli_query($conn,$sql);
//将数据存储到数组中
$data=array();
while($row=mysqli_fetch_assoc($result)){
array_push($data,$row);
}
//转换为JSON格式并输出
$json=json_encode($data);
echo $json;
代码中首先是连接到数据库,然后执行查询操作。查询完成后,将数据存储到数组中。最后,将数组转换为JSON格式并输出即可。通过前端Ajax请求,即可获得MySQL数据库中的文章数据。