Posts by Jovani Almeida • 29 points
1 post
-
2
votes1
answer92
viewsQ: What is the right way or how to close persistent PDO connections in PHP?
I need to close the connection to the Mysql database in PHP in the code below: try { $conn = new PDO('mysql:host=localhost;dbname=banco', "root", "", array(PDO::ATTR_PERSISTENT => true));…