11 lines
138 B
PHP
11 lines
138 B
PHP
|
<?php
|
||
|
|
||
|
define('dbhost', 'localhost');
|
||
|
define('dbname', '');
|
||
|
define('dbuser', '');
|
||
|
define('dbpass', '');
|
||
|
|
||
|
|
||
|
define('ROOT_DIR', __DIR__);
|
||
|
?>
|