19 lines
626 B
PHP
19 lines
626 B
PHP
<?php
|
|
|
|
// Подключение классов базы данных
|
|
require_once __DIR__ . '/class/database/class_Medoo.php';
|
|
require_once __DIR__ . '/class/database/class_Database.php';
|
|
|
|
// Подключение классов Функций
|
|
require_once __DIR__ . '/functions/function.php';
|
|
require_once __DIR__ . '/functions/routing.php';
|
|
|
|
// Данные подключения к БД
|
|
define('DB_HOST', '192.168.1.9');
|
|
define('DB_USER', 'root');
|
|
define('DB_PASS', 'root');
|
|
define('DB_NAME', 'taskboard');
|
|
define('DB_PORT', 3306);
|
|
define('DB_CHARSET', 'utf8mb4');
|
|
|
|
?>
|