"could not find driver"
I'm guessing that the PDO Driver isn't available. Is it possible to get it enabled, or is there any type of work around? Any information would be appreciated. I've searched the forums and it seems as if PDO was enabled in 2008, but I can't find any posts regarding it.
Here's some of my PHP code, with all the sensitive information edited out, for reference:
CODE
try{
$hostname = 'localhost';
$username = 'asdf'; //
$password = 'fdsa';
$dbname = "test"
$dbh = new PDO("mysql:host=$hostname;dbname=$dbnamehere", $username, $password);
$sql = "SELECT * FROM warmap";
}
catch(PDOException $e) {
echo $e->getMessage(); // this is where the error message is thrown.
}
