이 기사에서는 mysql 테이블의 모든 행과 열을 가져오는 PHP 소스 코드를 소개합니다. 주로 mysql_num_rows 및 mysql_fetch_row와 같은 PHP 데이터베이스 작업 함수를 사용합니다. 이 예제는 PHP 관련 지식을 익히는 데 도움이 됩니다. mysql 데이터베이스 프로그래밍이 필요합니다. 친구가 참조할 수 있습니다.
mysql 테이블의 모든 행과 열을 가져오는 PHP의 소스 코드는 다음과 같습니다.
<?php $user = "root"; $pass = ""; $db = "test"; $link = mysql_connect( "localhost", $user, $pass ); if ( ! $link ) { die( "Couldn't connect to MySQL: ".mysql_error() ); } // 作者:码农教程 http://www.manongjc.com/article/1236.html mysql_select_db( $db, $link ) or die ( "Couldn't open $db: ".mysql_error() ); $result = mysql_query( "SELECT * FROM student" ); $num_rows = mysql_num_rows( $result ); print "<p>$num_rows women have added data to the table</p>\n"; print "<table>"; while ( $a_row = mysql_fetch_row( $result ) ) { print "<tr>"; foreach ( $a_row as $field ) { print "<td>".stripslashes($field)."</td>"; } print "</tr>"; } print "</table>"; mysql_close( $link ); ?>