I am having an issue with PHP. I can query from MSSMS directly to the DB but my web pages all will not connect to the Server..
SQL Server 2016
PHP version 5.2.4 Sample:
$DatabaseServer = 'server';
$DatabaseUser = 'reader';
$DatabasePassword = '';
$DatabaseName = 'FSDBMV';
$SQL_db = @mssql_connect($DatabaseServer,$DatabaseUser,$DatabasePassword) or die("Unable to connect to Database server");
mssql_select_db("$DatabaseName");
$Sql = " SELECT [CustomerID]
,[CustomerName]
,[CSR]
,[CommissionCode]
FROM [FSDBMV].[dbo].[FS_Customer] as C