PHP mysqli_fetch_all() Function
In this chapter you will learn:
- Definition for PHP mysqli_fetch_all() Function
- Syntax for PHP mysqli_fetch_all() Function
- Parameter for PHP mysqli_fetch_all() Function
- Return for PHP mysqli_fetch_all() Function
- Example - fetches all rows and return the result-set as an associative array
Definition
The mysqli_fetch_all() function fetches all result rows and returns the result-set as an associative array, a numeric array, or both.
This function is available only with MySQL Native Driver.
Syntax
mysqli_fetch_all(result,resulttype);
Parameter
Parameter | Is Required | Description |
---|---|---|
result | Required. | Result set returned by mysqli_query(), mysqli_store_result() or mysqli_use_result() |
resulttype | Optional. | What type array to return. |
resulttype can be one of the following values:
- MYSQLI_ASSOC
- MYSQLI_NUM
- MYSQLI_BOTH
Return
It returns an array of associative or numeric arrays holding the result rows.
Example
The following code fetches all rows and return the result-set as an associative array.
<?php// j a v a 2 s. c o m
$con=mysqli_connect("localhost","my_user","my_password","my_db");
if (mysqli_connect_errno($con)){
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$sql="SELECT name FROM emp";
$result=mysqli_query($con,$sql);
// Fetch all
mysqli_fetch_all($result,MYSQLI_ASSOC);
mysqli_free_result($result);
mysqli_close($con);
?>
Next chapter...
What you will learn in the next chapter:
- Definition for PHP mysqli_fetch_array() Function
- Syntax for PHP mysqli_fetch_array() Function
- Parameter for PHP mysqli_fetch_array() Function
- Return for PHP mysqli_fetch_array() Function
- Example - fetches a result row as a numeric array and as an associative array
Home » PHP Tutorial » PHP MySQLi Functions