It seems the company I host my webserver with doesn't have MySQLnd installed (or at least not on my server). This means that in php I can not use $stmt->get_result(), which means I can not use $result->num_rows(). I instead have to use $stmt->bind_result() and $stmt->fetch(). Is there an alternative for people in my situation to easily get the number of rows without looping through with fetch()?
Also, same problem with $result->num_rows_affected().
