I have a system.config.php file that contains things like:
$ODBC_ERROR_FILE = 'C:/Intranet/errorLogs/odbc_error.txt';
$SQL_ERROR_FILE = 'C:/Intranet/errorLogs/sql_error.txt';
I then import this into files using:
include_once( "../../system/system.config.php" );
can someone tell me how to call these variables, I am doing:
error_log( $this->_errorMess, 3, $ODBC_ERROR_FILE );
but it does not seem to be working.
Thanks