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