PHP mysqli_more_results() Function

PHP mysqli_more_results() function check if there are any more query results from a multi query. Indicates if one or more result sets are available from a previous call to mysqli_multi_query().

Syntax

mysqli_more_results() Function Parameter

ParameterDescription
connection :Required parameter. The MySQL connection to be used

mysqli_more_results() Function Return Value

Return Values :Returns TRUE if one or more result sets are available from a previous call to mysqli_multi_query(), otherwise FALSE.

mysqli_more_results() Function Example