标签: php ajax
答案 0 :(得分:1)
fetch_assoc()只返回一行。如果你想要所有的行,你需要在循环中调用它。
fetch_assoc()
$rows = array(); while ($row = $result->fetch_assoc()) { $rows[] = $row; } echo json_encode($rows);
fetch_all()仅在您拥有MYSQLND驱动程序时才有效,我怀疑您的Hostgator服务器没有此功能。
fetch_all()
MYSQLND