fetch_array acts as fetch_first

Issue #6 invalid
Former user created an issue

When called fetch_array it will only fetch first row because after that it sets _executed to false

the deal is to do

$db->query($sql)->execute(); while( $row = $db->query($sql)->fetch_array() ) {

}

Comments (1)

  1. Log in to comment