EngineGP/system/data/mysql.php

10 lines
316 B
PHP
Raw Normal View History

2023-03-04 23:45:46 +00:00
<?php
if (!DEFINED('EGP'))
exit(header('Refresh: 0; URL=http://' . $_SERVER['SERVER_NAME'] . '/404'));
2023-03-04 23:45:46 +00:00
DEFINE('USER_DATABASE', 'root');
DEFINE('PASSWORD_DATABASE', 'SQLPASS'); // пароль mysql
DEFINE('NAME_DATABASE', 'enginegp');
DEFINE('CONNECT_DATABASE', 'localhost');
DEFINE('ERROR_DATABASE', FALSE);
2023-03-04 23:45:46 +00:00
?>