我正在嘗試使用以下代碼顯示我的表CarCollection
中的所有記錄。現在我只能返回第一條記錄。我怎麼能做到這一點?使用php顯示MySQL數據
$connection = mysql_connect("localhost","USER_NAME","PASSWORD");
if (!$connection)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("DATABASE_NAME", $connection);
$result = mysql_query("SELECT * FROM CarCollection");
$row = mysql_fetch_array($result);
mysql_close($connection);
你需要使用一個while循環。 while($ row = mysql_fetch_assoc($ result)) – 2011-04-27 05:56:23