Tag: mssql

  • PHP: The difference between the sqlsrv (Windows) and mssql (Linux) drivers

    Summary: sqlsrv is the PHP driver for Windows environments, mssql is for Linux. The mssql driver and functions used to exist in PHP on Windows but are now deprecated. Connection settings/syntax used with the sqlsrv driver may not work with mssql. We had to change the hostname from “hostname,\port_number”; to “hostname:port_number”;   Lesson # 1:…