我正在设置一个简单登录的网站。我把它主要设置在远程服务器上,然后决定设置一个测试服务器。它运行良好,然后我将我的文件上传到远程服务器。现在我在所有PHP页面上都出现“内部系统错误”。我是PHP新手并使用Dreamweaver。我没有在这里找到我的特殊情况。 DW中的错误指向下面的文件(具体为第9行)。我不知道如何解决它。有人可以帮忙吗?
<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_thelivingoracles = "localhost";
$database_thelivingoracles = "thelivingoracles";
$username_thelivingoracles = "username";
$password_thelivingoracles = "password";
$thelivingoracles = mysqli_connect($hostname_thelivingoracles,
$username_thelivingoracles, $password_thelivingoracles) or
trigger_error(mysql_error(),E_USER_ERROR);
?
答案 0 :(得分:3)
通常使用mysqli_connect()连接到特定数据库时,语法为:
$link = mysqli_connect("127.0.0.1", "my_user", "my_password", "my_db");
看起来您已经省略了数据库的名称?
$thelivingoracles = mysqli_connect($hostname_thelivingoracles,
$username_thelivingoracles, $password_thelivingoracles, $database_thelivingoracles) or
trigger_error(mysql_error(),E_USER_ERROR);
此外,没有关闭'&gt;'在脚本末尾的字符,我认为这是一个复制粘贴问题。