KJW
KJW

Reputation: 15251

List of core classes available by php5+?

Are there any other classes provided by php5+ such as the mysqli() class?

for example, I use this class to connect to the mysql database. Are there any other classes provided by php?

$db = new mysqli('localhost','username','','mysql');

Upvotes: 0

Views: 45

Answers (1)

René Höhle
René Höhle

Reputation: 27305

For database connections there is PDO available

Upvotes: 1

Related Questions