I'm starting to program a PHP MVC, what kind of connection is most recommended: MSQLi or PDO and why?
PDO supports 12 different database drivers and named parameters, loses performance in comparison to MySQL.
I recommend the PDO using Doctrine , for the sake of drive flexibility and compatibility;
Reference