为什么我的查询只显示一个结果?它应该在我的数据库上显示5个或更多结果
这是链接:
mysql_connect("localhost", "root", "") or die(mysql_error());
mysql_select_db("dummy") or die(mysql_error());
// Get all the data from the "example" table
$result = mysql_query("SELECT * FROM resdummy where am='hendri_humaedi'")
or die(mysql_error());
$row = mysql_fetch_array( $result );
答案 0 :(得分:1)
您的代码应使用循环填充所有记录:
// Get all the data from the "example" table
$result = mysql_query("SELECT * FROM resdummy where am='hendri_humaedi'")
or die(mysql_error());
while($row = mysql_fetch_array( $result ))
{
print_r($row); //<-- just to show you record details
}
强烈建议不要使用
mysql_*
函数。使用mysqli_*
功能或PDO。