What is the difference between mysqli_connect and mysql_connect?

Viewed 79856

What is the difference between mysqli_connect and mysql_connect?

I'm just wondering when I should use which one. I see both being used, and it seems like they are interchangable.

Which connection is better and how are they fundamentally different when connecting?

6 Answers

There are too many differences between these MYSQL and MYSQLi PHP database extensions. These differences are based upon some factors like features, performance, benefits, library functions, security and others. The “i” in mysqli stands for “improved”. The “mysqli” extension is an improvement over the old “mysql” extension.Click here for more information

enter image description here

Related