1.

What is PDO and the reasons to prefer it over MySQLi

Answer»

PDO is PHP Data Objects. 

PDO will WORK on 12 different database SYSTEMS, whereas MySQLi will only work with MySQL databases.

So, if you have to switch your project to use another database, PDO MAKES the process easy. You only have to change the CONNECTION string and a few queries. With MySQLi, you will need to rewrite the entire code - queries included.



Discussion

No Comment Found