我试图编码JSON中的表中的所有数据,但没有结果

时间:2017-05-08 22:55:52

标签: php mysql json

以下是有问题的网页

enter image description here

这是数据库 http://liamure.xyz/rsk/getdata.php

这是SQL代码

<?php
$con=mysqli_connect('host', 'user', 'Password', 'database');
if(mysqli_connect_errno())
{
    echo "Failed Connection" . mysqli_connect_errno();
}
else
{
    $sth = mysqli_query("SELECT * FROM quotes");
$rows = array();
while($r = mysqli_fetch_assoc($sth)) {
    echo"1";
    $rows[] = $r;
}
print json_encode($rows);

}

?>

当网页运行时,返回的所有内容都是&#34; []&#34; (您可以通过点击上面的网址来看到这一点)

1 个答案:

答案 0 :(得分:0)

mysqli_query函数的第一个参数是连接链接对象:

$sth = mysqli_query($con, "SELECT * FROM quotes");