I changed it to this:
function Log_Errors($error_msg,$page,$date,$ip,$agent)
{
golbal $Error_Table;
golbal $Error['error_message'];
golbal $Error['error_page'];
golbal $Error['error_date'];
golbal $Error['error_IP'];
$Log_Errors="
INSERT INTO $Error_Table ("$Error['error_message']", "$Error['error_page']", "$Error['error_date']", "$Error['error_IP']", "$Error['error_agent']")
VALUES (\"$error_msg\", \"$page\", \"$date\", \"$ip\", \"$agent\", )";
mysql_query($Log_Errors) or die ("<p>Database Error. We're sorry, but the administrator notification failed.</p>");
}
and I get this error:
Parse error: parse error, unexpected T_VARIABLE in config.php on line 83
Line 83 is the golbal $Error_Table; line