php warning: mysqli_close() expects parameter 1 to be mysqli

mysqli_close($result);

The line above is incorrect. You only need to call mysqli_close() once (if at all since, as pointed out in the comments, the connection is closed at the end of the execution of your script) and the parameter should be your link identifier, not your query resource.

Remove it.

Leave a Comment