You forgot to pass a required argument to mysqli_error(). Change
print mysqli_error();
to
print mysqli_error($mysqli);
Once you make the correction, you'll be able to see the error message and debug further.
FYI: It looks like you're oddly mixing the OO and procedural style usage of mysqli. You should stick to either one or the other.