Can I connect to SQL Server 2008 using PDO and integrated security using the mssql driver? Currently doing something like this to connect normally:
$db = new
This site helped: SQL Server Driver for PHP: Understanding Windows Authentication
The gist of it that fixed my issue was:
$conn = new PDO( "sqlsrv:server=$serverName ; Database=$dbName" );
My testing was with the newest driver released June 2010 (SQL Server Driver for PHP 2.0 CTP2).