11 lines
354 B
PHP
11 lines
354 B
PHP
|
<?php
|
||
|
spl_autoload_register(function ($class_name) {
|
||
|
if(file_exists('inc/'.$class_name . '.php'))
|
||
|
include_once 'inc/'.$class_name . '.php';
|
||
|
});
|
||
|
date_default_timezone_set('Europe/Moscow');
|
||
|
$WorkDIR = '/integration';
|
||
|
$ST['dbpf'] = 'acs';
|
||
|
$DB = new class_DB('admin_learn01','admin_learn01','FTgKQ6sRHW','localhost');
|
||
|
$DB->QUR('SET NAMES utf8');
|