Where can I change the type of SQL module used?
It is necessary to change from MySQL to MySQLi .
1 answer
Why not PDO ?
And the module does not change. Usually mysqli is already installed.
By the way you did not try to read the manual ?
UPDATE
If everything is already installed, then you need to change the code.
- The problem is that I need to change it on the hosting. In myphpadmin, it says that mysql is already there - Happy_Cougar
- oneif you have access to the console servers, use the command "php -m | grep mysql" and immediately find out which modules for mysql are already installed. And if it is worth what you need, then change your code. Ps apache tag is superfluous - zenith
|