Is the MySQL server and version of PHP5-MySQLi consistent so that the connection is possible? I am currently getting an error: I am running BSD. "Fatal error: throw exception" PDOException "with the message" could not find driver "..."
Here is the connection information:
$info = "mysql:dbname=myDB;host=localhost";
$user = "dbUser";
$pw = "somePW";
return(new PDO($info, $user, $pw));
Here is my MySQL info:
MySQL server 5.5.24
php5-MySQLi-5.4.3
source
share