DaveC426913
Programmer
How do I connect to an MSSQL database using PHP?
I'm using this:
$s = mssql_connect($myServer, $myUser, $myPass) or die("Couldn't connect to SQL Server on $myServer");
but the page just draws a blank on that line - no error.
Are there other configuration things I need to do?
I'm using this:
$s = mssql_connect($myServer, $myUser, $myPass) or die("Couldn't connect to SQL Server on $myServer");
but the page just draws a blank on that line - no error.
Are there other configuration things I need to do?