Easy Tutorial
❮ Func Http Setrawcookie Func String Stripslashes ❯

PHP mysqli_fetch_row() Function

PHP MySQLi Reference Manual

Fetching rows from the result set:

<?php 
// Assume database username: root, password: 123456, database: tutorialpro 
$con = mysqli_connect("localhost", "root", "123456", "tutorialpro"); 
if (mysqli_connect_errno($con)) 
{ 
    echo "Failed to connect to MySQL: " . mysqli_connect_error(); 
} 

$sql = "SELECT name, url FROM websites ORDER BY alexa";

if ($result = mysqli_query($con, $sql))
{
    // Fetch one row at a time
    while ($row = mysqli_fetch_row($result))
    {
        printf("%s : %s", $row[0], $row[1]);
        echo "<br>";
    }

    // Free the result set
    mysqli_free_result($result);
}

mysqli_close($con);
?>

Definition and Usage

The mysqli_fetch_row() function fetches a row from the result set and returns it as an enumerated array.


Syntax

Parameter Description
result Required. Specifies a result set identifier returned by mysqli_query(), mysqli_store_result(), or mysqli_use_result().

Technical Details

Return Value: Returns an array of strings that corresponds to the fetched row. Returns NULL if there are no more rows in the result set.
PHP Version: 5+
--- ---
❮ Func Http Setrawcookie Func String Stripslashes ❯