The php_pdo_mysql.dll can\'t be enabled in machine. I have set extension=php_pdo.dll and extension=php_pdo_mysql.dll enabled in php.in
PHP error PDO not exist on 5.4
Fatal error: Class 'DigitalToolBox\PDO' not found in C:\SERVER\www\MyAPP\DigitalToolBox\MysqlConnectionTool.php on line 19
you can see pdo is loaded because is in list with this comand:
print_r(get_loaded_extensions());
this error happens for the use of namespaces, we need to add at the beginning of our code the instruction:
use PDO;
IF ($this->works) $voteForThis++;