mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-07 07:49:03 +00:00
18 lines
No EOL
309 B
PHP
18 lines
No EOL
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',
|
|
);
|
|
}
|
|
?>
|