也许有些人可以帮我连接数据库。
我如何编写此代码以便能够连接到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";
有人可以帮我吗?
答案 0 :(得分:-1)
尝试在这里阅读更多信息如何连接到mysql数据库。 http://www.w3schools.com/php/php_mysql_connect.asp
如果您想将phpmyadmin连接到您的数据库,请参阅 http://docs.phpmyadmin.net/en/latest/config.html#server-connection-settings