Hello,
I am new to php and MSSQL. I have php 5 running on a windows 2000 box.
I added a DSN to the SQL server database I am trying to connect to using admin tools and Data sources in control panel.
Now I'm not sure how to connect to the database via php. I found the following code using odbc_connect
$dsn="issueTracker";
$username="";
$password="";
$sqlconnect=odbc_connect($dsn,$username,$password);
$sqlquery="SELECT * FROM status;";
$process=odbc_exec($sqlconnect, $sqlquery);
I am not entering anything for username and password as I setup the DSN using NT Authentication.
I did set mssql.secure_connection = on in the php.ini file.
I get the following error on the page:
Warning: odbc_connect() [function.odbc-connect]: SQL error: [Microsoft][ODBC SQL Server Driver]
Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'., SQL state 28000 in SQLConnect
Any help would be awesome!