Danny620 Posted July 24, 2009 Share Posted July 24, 2009 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 More sharing options...
corbin Posted July 25, 2009 Share Posted July 25, 2009 You have to tell PHPMyAdmin to use MySQLi I would guess. Link to comment https://forums.phpfreaks.com/topic/167335-change-it-from-mysql-to-mysqli/#findComment-882458 Share on other sites More sharing options...
Danny620 Posted July 25, 2009 Author Share Posted July 25, 2009 how do i do that Link to comment https://forums.phpfreaks.com/topic/167335-change-it-from-mysql-to-mysqli/#findComment-882584 Share on other sites More sharing options...
wildteen88 Posted July 25, 2009 Share Posted July 25, 2009 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. Link to comment https://forums.phpfreaks.com/topic/167335-change-it-from-mysql-to-mysqli/#findComment-882585 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.