Answers for "when do we close the connection php"

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 "when do we close the connection php"

Browse Popular Code Answers by Language