Home  >  Article  >  Backend Development  >  PHP uses mysql_fetch_row query to obtain the data row list, phpmysql_fetch_row_PHP tutorial

PHP uses mysql_fetch_row query to obtain the data row list, phpmysql_fetch_row_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:02:53904browse

PHP uses mysql_fetch_row query to obtain the data row list, phpmysql_fetch_row

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

<&#63;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";
}
&#63;>

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/969479.htmlTechArticlePHP uses mysql_fetch_row query to obtain the data row list, phpmysql_fetch_row This article describes the example of PHP using mysql_fetch_row query to obtain the data row list method. Share it with everyone...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn