我有這樣的表例如檢索許多行的PHP MySQL的
+------+---------+------+
| id | item_id | type |
+------+---------+------+
| 1 | 2 | book |
| 1 | 1 | pen |
+------+---------+------+
我想要檢索的所有數據,其中ID = 1 PHP腳本,這裏是我用
<?php
$stat="select item_id, type from tb where id=1";
$query = mysqli_query($con, $stat);
$result = mysqli_fetch_array($query,MYSQLI_ASSOC);
print_r($result);
?>
代碼結果是:Array ([item_id] => 2 [type] => book)
那只是第一行,如何檢索php代碼中的所有行?
查看答案[這個問題](http://stackoverflow.com/questions/4643340/mysql-fetch-array-add-all-rows) – 2011-04-15 07:41:56