"extension mysql is not compiled into Php" is an error i keep receiving. Throughout research I have found that the mysql.dll is no longer used in the version of xampp i have. I am using PEAR and an array $dsn
. Now I do see that an pdo_mysql.dll
is loaded in the ext/
but I am still not sure how to fix this error within xampp.
$dsn = array(
'phptype' => 'mysql',
'username' => "",
'hostspec' => "localhost",
'database' => "witit",
);
So this was marked for duplicate but it is not the same issue because I have removed the semi-colon to add the extension=mysql.dll
and that did not solve my issue.