Jump to content

change it from mysql to mysqli


Recommended Posts

when i log into my database via phpmyadmin in the webserver info bit it says

 

Web server

Apache/2.2.11 (Win32) PHP/5.2.10

MySQL client version: 5.0.84

PHP extension: mysql

 

and i want the php extension to be mysqli instead i have try ed uncommenting mysql in php.ini file and when i go back to php myadmin i get error can't load mysql but it works fine and everying but how do i make this error go a way and keep mysqli

 

 

thanks

Link to comment
https://forums.phpfreaks.com/topic/167335-change-it-from-mysql-to-mysqli/
Share on other sites

By editing the config.inc.php and changing this line

$cfg['Servers'][$i]['extension'] = 'mysql';

 

to

$cfg['Servers'][$i]['extension'] = 'mysqli';

 

You will need to make sure the mysqli extension is enabled in your php.ini in order for phpmyadmin to use mysqli.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.