MYSQLI_STMT_NEXT_RESULT(3) 1 MYSQLI_STMT_NEXT_RESULT(3)
mysqli_stmt::next_result - Reads the next result from a multiple query
Object oriented style (method):
SYNOPSIS
public bool mysqli_stmt::next_result (void )
DESCRIPTION
Procedural style:
bool mysqli_stmt_next_result (mysql_stmt $stmt)
Reads the next result from a multiple query.
PARAMETERS
o $
stmt -Procedural style only: A statement identifier returned by mysqli_stmt_init(3).
RETURN VALUES
Returns TRUE on success or FALSE on failure.
ERRORS
/EXCEPTIONS
Emits an E_STRICT level error if a result set does not exist, and suggests using mysqli_stmt::more_results in these cases, before calling
mysqli_stmt::next_result.
MYSQL NATIVE DRIVER ONLY
Available only with mysqlnd.
SEE ALSO
mysqli_stmt::more_results, mysqli::multi_query.
PHP Documentation Group MYSQLI_STMT_NEXT_RESULT(3)