...

/

PDO - PHP Database Extension

PDO - PHP Database Extension

Learn about the PDO extension, connecting with MySQL database, and creating a table through PDO.

PDO (PHP Data Objects) is a PHP extension through which we can access and work with databases. Though PDO is similar in many aspects to MySQLi, it is better to work with because of the following reasons:

  • It is consistent across databases, so it can work with MySQL as well
...