You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mysqli_fetch_array returns NULL when there are no more results, but mysql_fetch_array returned FALSE. To fix, change line 249 from return mysqli_fetch_array($result, $result_type); to return mysqli_fetch_array($result, $result_type) ?? FALSE;
The text was updated successfully, but these errors were encountered:
mysqli_fetch_array
returnsNULL
when there are no more results, butmysql_fetch_array
returnedFALSE
. To fix, change line 249 fromreturn mysqli_fetch_array($result, $result_type);
toreturn mysqli_fetch_array($result, $result_type) ?? FALSE;
The text was updated successfully, but these errors were encountered: