Answers for "a mysql connection in php will automatically close when the script ends."

PHP
1

close mysql connection in php

// OOP
$conn->close();

//Procedural
mysqli_close($conn);
Posted by: Guest on May-28-2020

Code answers related to "a mysql connection in php will automatically close when the script ends."

Browse Popular Code Answers by Language