summaryrefslogtreecommitdiffstats
path: root/config/config.inc.php
blob: 38add9efefe84c638226a28da68c6fd02f5dda4c (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';
  }
?>