Home > Article > Backend Development > PHP uses mysql_fetch_row query to obtain the data row list, phpmysql_fetch_row_PHP tutorial
This article describes the example of PHP using mysql_fetch_row query to obtain the data row list. Share it with everyone for your reference. The specific analysis is as follows:
Mysql_fetch_row is used here to query data from the mysql database and save it to the list
The syntax is as follows:
array mysql_fetch_row (resource $Result_Set)
If the execution is successful, the list will be returned. If it fails, false will be returned. The following is the demo code
<?php $UserName = 'abc'; $Password = '1234'; $DbHandle = mysql_connect ('localhost', $UserName, $Password); if (!$DbHandle) { die 'No database connection could be established.'; } $DBName = 'w3db; if (!mysql_select_db ($DBName, $DbHandle)) { die 'Database could not be selected.'; } $Query = "SELECT ISBN, Title, Author FROM articles"; $articles = mysql_query ($Query, $DbHandle)); while ($Row = mysql_fetch_row($articles)) { echo "ISBN = $Row['ISBN']<br />\n"; } ?>
I hope this article will be helpful to everyone’s PHP programming design.