Подтвердить что ты не робот

Это расширение требует, чтобы Microsoft ODBC Driver 11 для SQL Server взаимодействовал с SQL Server

Уже загружен sqlsrv на microsoft...

введите описание изображения здесь

и на моем phpinfo()

введите описание изображения здесь

введите описание изображения здесь

включен php.ini на C:\wamp\bin\apache\apache2.4.9\bin и C:\wamp\bin\php\php5.5.12 введите описание изображения здесь

и по-прежнему имеет такую ​​ошибку.

Failed to get DB handle: SQLSTATE[IMSSP]: This extension requires the Microsoft ODBC Driver 11 for SQL Server to communicate with SQL Server. Access the following URL to download the ODBC Driver 11 for SQL Server for x86: http://go.microsoft.com/fwlink/?LinkId=163712 

и мой код

try {
    $dbh = new PDO ("sqlsrv:Server=$host;Database=$db","$user","$pass");
  } catch (PDOException $e) {
    echo "Failed to get DB handle: " . $e->getMessage() . "\n";
    exit;
  }
  $stmt = $dbh->prepare("select top 5 from teams");
  $stmt->execute();
  while ($row = $stmt->fetch()) {
    print_r($row);
  }
  unset($dbh); unset($stmt);
4b9b3361