PHP使用mysql_fetch_row查詢獲得數(shù)據(jù)行列表的方法

字號:


    這篇文章主要介紹了PHP使用mysql_fetch_row查詢獲得數(shù)據(jù)行列表的方法,涉及php中使用mysql_fetch_row操作數(shù)據(jù)庫的技巧,需要的朋友可以參考下
    本文實(shí)例講述了PHP使用mysql_fetch_row查詢獲得數(shù)據(jù)行列表的方法。分享給大家供大家參考。具體分析如下:
    這里使用mysql_fetch_row從mysql數(shù)據(jù)庫中查詢數(shù)據(jù),并保存到list中
    語法如下:
    array mysql_fetch_row (resource $Result_Set)
    如果執(zhí)行成功,則返回list列表,如果失敗,返回false 下面是演示代碼
    <?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";
    }
    ?>
    希望本文所述對大家的php程序設(shè)計(jì)有所幫助。