$row=mysql_fetch_array(); ``` 2. 從資料庫取得的陣列,索引值只能是數字(數字索引)。$row\[0\],通常搭配list()來將陣列值套用到指定變數上。 ``` $row=mysql_fetch_row(); ``` 3. 從資料庫取得的陣列,索引值只能是字串(關聯索引)。$row\["title"\] ``` $row=mysql_fetch_assoc(); ```
$row=mysql_fetch_row(); ``` 3. 從資料庫取得的陣列,索引值只能是字串(關聯索引)。$row\["title"\] ``` $row=mysql_fetch_assoc(); ```
$row=mysql_fetch_assoc(); ```