I need to connect to a BD MS Sql Server 2008 with PHP 5.6
I have Development: Windows 7 64bit, with xampp
Centos 7 Production
I have installed the Microsoft drivers .
With this line of code
$c = new PDO("sqlsrv:Server=$host;Database=$db", "$user", "$pwd");
It gives error:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE [IMSSP]: This extension requires the Microsoft ODBC Driver 11 for SQL Server to communicate with SQL Server. Access the following URL to download the ODBC Driver 11 for SQL Server for x86
Probably will not work on Centos 7.
What is the best solution?