Answers for "mysql close connection after time"

PHP
3

how to close mysql connection

// Creating connection
$conn = mysqli_connect("localhost", "username", "password");
// closing connection
mysqli_close($conn);
Posted by: Guest on July-03-2021

Code answers related to "mysql close connection after time"

Browse Popular Code Answers by Language