php - mysqli driver not found in xamp when using pdo -
hi trying use pdo connect mysqli database on xamp , keep getting error.
php connection code
$handler = new pdo('mysqli:host=127.0.0.1;dbname=app','root','');
error message
fatal error: uncaught exception 'pdoexception' message 'could not find driver' in
remove mysqli:
$handler = new pdo('mysql:host=127.0.0.1;dbname=app','root','');
Comments
Post a Comment