By seeing suggestions throught the internet I tried to convert all my queries to mysqli.
But mysqli is not working in my xampp.I checked my php folder and there is an php_mysqli.dll file ... still it doesnt work
Thanks in advance
By seeing suggestions throught the internet I tried to convert all my queries to mysqli.
But mysqli is not working in my xampp.I checked my php folder and there is an php_mysqli.dll file ... still it doesnt work
Thanks in advance
I think you should use XAMPP 1.8.3-1, XAMPP 1.8.2-2, XAMPP 1.8.1. Because these xampp versions also support Mysqli by default.
Goto the directory
phpMyAdmin
, find there is a file with nameconfig.inc.php
, open the file and find a line there as:$cfg['Servers'][$i]['extension'] = 'mysql'
;just change
mysql
tomysqli
.Have you declare it to php.ini to load it? If no, try find this in php.ini and add php_mysqli.dll
Another thing that might be blocking the msqli dll from loading could be user right issues on your local webserver, make sure the \User can read the ext folder, that was what worked for me