mysqli open and close connection

Solutions on MaxInterview for mysqli open and close connection by the best coders in the world

showing results for - "mysqli open and close connection"
Leon
16 Mar 2016
1// Creating connection
2$conn = mysqli_connect("localhost", "username", "password");
3// closing connection
4mysqli_close($conn);