summaryrefslogtreecommitdiffstats
path: root/config/config.inc.php
blob: 20436cf8a57e4f3bd6f6fd4faac564b2eca1d7a8 (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']		= 'neon';
  $GLOBALS['config']['password']	= 'neon';
  
  $GLOBALS['config']['db']		= 'neon';
  
  
  // page design
  
  $GLOBALS['config']['default_style']	= 'TheWhiteOne';
  $GLOBALS['config']['title']		= 'Neon - ';
?>