あなたの中には、データベースに接続するのに役立つ人がいます。phpmyadminに接続
私はPhpMyAdminと私のデータベースにそこに接続できるようにこれを書いていますか? (最初の行)
$mysqli = new mysqli("mysql:host=mysql.xxxxxxx.dk","xxxxxxxx_dk_db2"); // creates the object
if ($mysqli->connect_errno) {
echo "Failed to connect to MySQL: (" . $mysqli->connect_errno . ") " . $mysqli->connect_error; // if error messages
}
echo "You're connected to the database via: "
. $mysqli->host_info
. "\n";
誰でも私を助けてくれますか?
phpMyAdminには、データベースに接続されているツールであることがわかり、データベースへのphpMyAdminのを接続したい場合、それはあなたがに接続すると何かではありません。 MySQLiへの新しい接続には、ホスト、ユーザ、パスワード、データベースの4つの引数が必要です。 http://php.net/manual/en/mysqli.quickstart.connections.php –