집 >데이터 베이스 >MySQL 튜토리얼 >PHP에서 MySQL 결과 세트를 반복하는 방법은 무엇입니까?
PHP에서 MySQL 결과 세트를 반복하는 방법
PHP에서 MySQL을 사용할 때 데이터베이스에서 데이터를 검색하고 결과를 반복합니다. 이를 달성하는 방법에는 여러 가지가 있으며 각각 고유한 장점과 단점이 있습니다.
mysql_fetch_array() 함수 사용
한 가지 일반적인 방법은 mysql_fetch_array()를 사용하는 것입니다. 기능. 이 함수는 결과 집합에서 데이터 행을 가져와서 열 이름이 배열 키로 사용되는 연관 배열로 반환합니다.
<?php // Establish a connection to the MySQL database $link = mysql_connect(/* arguments here */); // Execute a query to retrieve data from the "table" table $query = sprintf("SELECT * FROM table"); $result = mysql_query($query, $link); // Loop through the result set using mysql_fetch_array() if ($result) { while ($row = mysql_fetch_array($result)) { // Do something with the current row data (e.g., print it) print_r($row); } } else { // Handle any errors that occurred during query execution echo mysql_error(); } ?>
위 내용은 PHP에서 MySQL 결과 세트를 반복하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!