Problem Statement
What does PDO stand for in PHP?
Explanation
PDO stands for PHP Data Object. It provides a database abstraction layer that works with many database systems like MySQL, SQLite, and PostgreSQL.
Code Solution
SolutionRead Only
$pdo = new PDO('mysql:host=localhost;dbname=test','root','pass');Practice Sets
This question appears in the following practice sets:
