Posts by Cesar André • 9 points
1 post
-
0
votes0
answers216
viewsQ: PDO class not found in namespace other than global
I’m creating a class that uses PDO, but in a different namespace than global: namespace Classes\Config; use \PDO; class Connection { public static function getConnection() { $dbhost = "algumhost";…