PHP mysqli_stmt more_results() Method
The PHP mysqli_stmt::more_results() / mysqli_stmt_more_results() function is used to check if there are more query results from a multiple query.
Note: Available only with mysqlnd.
Syntax
//Object-oriented style public mysqli_stmt::more_results() //Procedural style mysqli_stmt_more_results(statement)
Parameters
statement |
Required. For procedural style only: Specify a mysqli_stmt object returned by mysqli_stmt_init(). |
Return Value
Returns true if more results exist, otherwise false.
❮ PHP MySQLi Reference