QUOTE:
原帖由 海里一粒沙 于 2008-5-6 09:35 PM 发表
Fatal error: Call to undefined function mysqli_connect() in D:\PHPnow\htdocs\turf\lib\drivers\mysqli.inc.php on line 63
不知道啥错误
他默认是用mysqli函数,你的PHP没打开mysqli函数,可在配置文件修改成mysql的,不过MYSQL的也有个错误,
mysql.inc.php中的
<?php
function nextRecord(){
return mysql_fetch_array( $this->queryID, MYSQLI_BOTH );
}
?>
应该是
<?php
function nextRecord(){
return mysql_fetch_array( $this->queryID, MYSQL_BOTH );
}
?>
还有可能就是可能UTF-8会乱码,解决办法可以在mysql.inc.php中的
<?php
function connect()
{
if( 0 == $this->linkID ){
$this->linkID = mysql_connect($this->DBHostname,$this->DBUser,$this->DBPass, $this->DBName);
mysql_select_db( $this->DBName, $this->linkID );
}
}
?>
修改成
<?php
function connect()
{
if( 0 == $this->linkID ){
$this->linkID = mysql_connect($this->DBHostname,$this->DBUser,$this->DBPass, $this->DBName);
mysql_select_db( $this->DBName, $this->linkID );
mysql_query('SET NAMES utf8');
}
}
?>