Introduction to PHP Data Object PDO in PHP
There are three main API options when considering connecting to a MySQL database server. PHP’s MySQL Extension. PHP’s mysqli Extension. PHP Data Object (PDO). PHP Data Object (PDO) PDO is a database access layer that provides a fast and consistent interface for accessing and managing databases in PHP applications. Every DBMS has specific PDO drivers(s)…
