summaryrefslogtreecommitdiffstats
path: root/config/config.inc.php
blob: b69ea2ff977c823a872e6695cc53da3c57c4d054 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?PHP
  if(!defined('CONFIG_INC')) {
    define('CONFIG_INC', 1);
    
    // main options
    
    $config['language']			= 'de';
    $config['home']				= 'Home:Startseite';
    
    
    // database connection
    
    $config['driver']			= 'mysql';
    $config['server']			= 'localhost';
    
    $config['user']				= 'gamezock';
    $config['password']			= 'thegzpass';
    
    $config['db']				= 'gamezock-2';
    
    
    // page design
    
    $config['default_style']	= 'GreenGrid';
    $config['title']			= 'Neon - ';
  }
?>