SQLSTATE: User login failed
<p>I am using the following PHP connection file to connect to my SQL Server database. </p>
<pre class="brush:php;toolbar:false;"><?php
$servername = "...";
$username = "...";
$password = "";
$dbname = "...";
try {
$conn = new PDO("sqlsrv:Server=$servername;Database=$dbname", $username, $password);
echo "Connected to $dbname at $servername successfully.";
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch (PDOException $pe) {
die ("Could not connect to the database $dbname :" . $pe->getMessage());
}
?></pre>
<p>I keep getting this error which reads: </p>
<blockquote>
<p>"SQLSTATE[28000]: [Microsoft][ODBC Driver 17 for SQL Server][SQL
Server] Login failed for user $username. </p>
</blockquote>
<p>I have downloaded the latest versions of ODBC 17 and 18 which I hoped would resolve this issue but it does not. My SQL Server Authentication is also set to SQL Server and Windows Authentication. </p>