bug in fetch()

Issue #9 resolved
Former user created an issue

Your latest fix in fetch() does not work properly (PHP 5.4.25, MySQLi 5.1.73). The array is always empty. I modified it, and now it works:

    $results = array();
    while($tmp = $this -> _result -> fetch_array(MYSQLI_ASSOC)) {
        $results[] = $tmp;
    }

Comments (2)

  1. Log in to comment