I am trying to connect to a SQL Server with PHP, but unfortunately it fails with calling the function at self. I installed the drivers (DLL), as well a the driver from this site: https://www.microsoft.com/de-ch/download/details.aspx?id=36434
I am receiving the following message:
Fatal error: Uncaught Error: Call to undefined function sqlsrv_connect() in ....
I running a local server with XAMPP with the newest PHP version 7.1.1.
UPDATE:
I checked if the extension is loaded in PHP:
var_dump(extension_loaded ("php_sqlsrv_7_nts"));
But it gives me a bool(false)
back.