I wanted to establish a database connection with PHP to SQL Server 2012. I have a wamp server (64-bit) installed on a Windows computer (64-bit) with PHP 5.5.12, and on the same computer I have SQL Server 2012.
Extracted sqlsrv drivers from official_link
I copied the extracted drivers php_sqlsrv_55_ts.dll, extension = php_pdo_sqlsrv_55_ts.dll
to the php\ext
folder, and then changed the php.ini file to include extensions
extension = php_sqlsrv_55_ts.dll; extension = php_pdo_sqlsrv_55_ts.dll;
Now i tried
<?php phpinfo(); ?>
I see the following information without any SQL server information.


It seems that the SQL server connection is not configured successfully. Can someone please guide me on what I am missing here.
source share