Sử dụng các cuộc gọi lặp lại tới mysql_fetch_assoc. Nó được ghi lại ngay trong sách hướng dẫn PHP.
http://php.net/manual/ Chức năng.mysql-fetch-assoc .php
// While a row of data exists, put that row in $row as an associative array
// Note: If you're expecting just one row, no need to use a loop
// Note: If you put extract($row); inside the following loop, you'll
// then create $userid, $fullname, and $userstatus
while ($row = mysql_fetch_assoc($result)) {
echo $row["userid"];
echo $row["fullname"];
echo $row["userstatus"];
}
Nếu cần, bạn có thể sử dụng điều này để xây dựng một mảng đa chiều để sử dụng trong các phần khác của tập lệnh của bạn.