This is my code that I am working with
//Windows Authentication
<?php
$serverName = "IE3PDT1QK88G5";
connectionInfo = array( "Database"=>"MIN-MAK MRO ");
$conn = sqlsrv_connect( $serverName, $connectionInfo);
if( $conn ) {
echo "Connection established.<br />";
}else{
echo "Connection could not be established.<br />";
die( print_r( sqlsrv_errors(), true));
}
sqlsrv_close( $conn);
?>