"Used to communicate with databases. It is unique in that it does not matter what type of database you are communicating with, unlike mySQLi commands that are designed to talk to a mySQL database"-- Credit--http://php.net/manual/en/intro.pdo.php
What are some issues you need to be aware of when using PDO?
"Not completely sure. Did not find any issues except maybe this on: PDO substitutes placeholders with actual data, instead of sending it separately. And with "lazy" binding (using array in execute()), PDO treats every parameter as a string. As a result, the prepared LIMIT ?,? query becomes LIMIT '10', '10' which is invalid syntax that causes query to fail."-- Credit--https://phpdelusions.net/pdo#limit
What do you need to do to include PDO in your PHP pages?