Should I have to upgrade my website to PHP MySQLi or PDO?

后端 未结 3 803
天命终不由人
天命终不由人 2021-01-19 00:14

I have designed a website before 5 years using PHP MySQL and still works fine without any issues. I heard MySQL is officially deprecated as of PHP 5.5 and has been removed a

3条回答
  •  离开以前
    2021-01-19 00:56

    PDO and MySQli both are used for database connection and both have their own advantage. In closer look PDO wins the battle but if you really stick with only one database provider then my personal best choice is use MySQLi.

    You will also extract some good points from: http://code.tutsplus.com/tutorials/pdo-vs-mysqli-which-should-you-use--net-24059

提交回复
热议问题