在 PHP 个页面上获得 "Internal System Error"
Getting an "Internal System Error" on PHP pages
我正在建立一个简单登录的网站。我主要在远程服务器上设置它,然后决定设置一个测试服务器。它运行良好,所以我将文件上传到远程服务器。现在我在所有 PHP 页面上都得到了 "internal system error"。我是 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);
?
通常当使用 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);
此外,您的脚本末尾没有结束字符“>”,不过我认为这是复制粘贴问题。
我正在建立一个简单登录的网站。我主要在远程服务器上设置它,然后决定设置一个测试服务器。它运行良好,所以我将文件上传到远程服务器。现在我在所有 PHP 页面上都得到了 "internal system error"。我是 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);
?
通常当使用 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);
此外,您的脚本末尾没有结束字符“>”,不过我认为这是复制粘贴问题。