我有一个非常基本的PHP应用程序。我的数据库连接正在dbfunctions.php文件中处理,该文件有一个名为database的类。
构造函数是这样的:
__construct()
{
function __construct()
{
$this->con = mysql_connect($this->host, $this->username, $this->password) ;
if(!$this->con)
{
die('Could not connect to the server'.mysql_error());
}
else
mysql_select_db("job_hunt", $this->con);
}
}
在我的formProcessing页面中,我调用此数据库连接,如下所示:
$db = new Database();
建立与mysql服务器的连接很好..这我通过查看mysql_error日志函数来验证。但是,当我指定mysql_select_db函数时,它会在检索localhost / project / file.php时产生服务器错误.... mysql_error_log函数没有显示任何内容,只是说明:
mysqld准备连接(最终声明)。在php_error或apache_error日志文件中也没有引导。
我迷路了!!!