mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-08 08:19:01 +00:00
18 lines
309 B
PHP
18 lines
309 B
PHP
|
<?php
|
||
|
class DATABASE_CONFIG {
|
||
|
|
||
|
var $default = array(
|
||
|
'driver' => 'mysqli',
|
||
|
'persistent' => false,
|
||
|
'host' => 'localhost',
|
||
|
'login' => 'webtt',
|
||
|
'password' => 'webtt77',
|
||
|
'database' => 'webtt2',
|
||
|
'encoding' => 'y'
|
||
|
);
|
||
|
var $raw_files = array(
|
||
|
'driver' => "",
|
||
|
'datasource' => 'raw_files',
|
||
|
);
|
||
|
}
|
||
|
?>
|