私は私のオンラインデータベースへの接続を作成したいが、その後、私はこのエラーを取得する:my:online MySQLデータベースに接続したいが、このエラーが出る。誰か助けてくれますか?
Warning: mysqli :: mysqli(): (HY000/2002): A connection attempt failed because the " Related party Incorrectly If the answer after a certain time , of the costs Connection failed because " the Confederate host has not responded . C: \ wamp \ www \ array Add in db \ 222.php on line 8
これは私のコードです:助けるため
?php
$servername = "db.tapdeleest.nl"; $username = "***"; $password = "***"; $dbname = "***";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
else
{
echo "nice";
}
?>
ありがとう!
お、申し訳ありませんが、私はPHPを意味しました。 – sander
嫌いを取り除いてもらえますか? – sander
あなたは遠隔で接続していますか?その場合は、リモート接続が有効になっているかどうかを確認してください。 –