This time when I installed AGAIN I got this error:
Quote:
Parse error: parse error, unexpected T_STRING, expecting '{' in /home/gh/public_html/discuss/includes/db_mysql.php on line 188
|
Line 188 is the last {
PHP Code:
function shutdown_query($query_string, $arraykey = 0)
{
global $shutdownqueries;
if (NOSHUTDOWNFUNC AND !$arraykey)
{
return $this->query($query_string);
}
elseif ($arraykey)
{
$shutdownqueries["$arraykey"] = $query_string;
}
else
{
$shutdownqueries[] = $query_string;
}
} function query($query_string, $query_type = 'mysql_query')
{
global $query_count, $querytime, $pagestarttime;
$pageendtime = microtime();
$starttime = explode(' ', $pagestarttime);
$endtime = explode(' ', $pageendtime);