使用JSON,PHP检索MySQL数据

时间:2016-05-10 10:56:51

标签: php mysql json

我在从数据库中获取数据时遇到问题; 这是我的代码

<?php
 require('connectionT.php');

 $result= mysqli_query($con, "SELECT * FROM restaurants");
 while($row=mysqli_fetch_assoc($result))
  {
        $tmp[]=$row;

  }

  echo json_encode ($tmp);

?>

当我执行我的代码时,我只得到一个空白页面。 任何人?

0 个答案:

没有答案