I have to understand a script to make some additions and I have some short questions.
There are these few lines:
if(!isset($GLOBALS['DB'])){
$DB = new System\Database\MySQL(DB_SERVER,DB_USER,DB_PASSWORD,DB_NAME,DB_PORT);
}
new System\SessionHandler();
I don't understand which path System\Database\MySQL and System\ defines, because there are no folders with these names.
grep -R 'namespace System\\Database' your/app/rootmight help to find the file that defines theMySQLclass.