我的数据库示例是这样的
database:test
table:test
id name password message active
1 test testpass testmsg no
2 test2 testtest testmsg2 no
当我运行 sql 查询并在 php 中显示它时,它只给出一个结果。php部分是,
$a=mysqli_query($con,"select name from test where active='no'");
$b=mysqli_fetch_array($a);
print_r($b);
它只显示了第一条记录
test
有人可以建议我,我在哪里做错了吗?