PHP PDO:SQLSTATE [HY000] [2002]无法建立连接,因为目标计算机主动拒绝它。

时间:2017-02-24 15:10:10

标签: php iis pdo

我正在寻找PHP和PDO问题的解决方案..

try {
    $db = new PDO("mysql:dbname=PHP;host=localhost", "User", "Password");
    // set the PDO error mode to exception

} catch(PDOException $e) {
    echo 'Fehler: ' . htmlspecialchars($e->getMessage());
    exit();
}

我不知道如何修复它...任何想法?我尝试将端口更改为3306,如下所示:

$db = new PDO("mysql:dbname=PHP;port=3306;host=localhost", "User", "Password");

但它并没有改变任何事情。

由于

0 个答案:

没有答案