MysqlndUhConnection::nextResult Prepare next result from multi_query &reftitle.description; public boolMysqlndUhConnection::nextResult mysqlnd_connectionconnection Prepare next result from multi_query. &reftitle.parameters; connection Mysqlnd connection handle. Do not modify! &reftitle.returnvalues; Returns TRUE on success. Otherwise, returns FALSE &reftitle.examples; <function>MysqlndUhConnection::nextResult</function> example multi_query("SELECT 1 AS _one; SELECT 2 AS _two"); do { $res = $mysqli->store_result(); var_dump($res->fetch_assoc()); printf("%s\n", str_repeat("-", 40)); } while ($mysqli->more_results() && $mysqli->next_result()); ?> ]]> &example.outputs; string(1) "1" } ---------------------------------------- proxy::nextResult(array ( 0 => NULL, )) proxy::nextResult returns true array(1) { ["_two"]=> string(1) "2" } ---------------------------------------- ]]> &reftitle.seealso; mysqlnd_uh_set_connection_proxy mysqli_next_result