2d_balls/server/config.php

21 lines
426 B
PHP
Raw Permalink Normal View History

<?php
$config['db']['host'] = 'localhost';
$config['db']['user'] = 'steffen';
$config['db']['pw'] = 'qU4rK5m1n1m4l';
$config['db']['db'] = 'st_ranking';
$config['db']['table'] = '2dballs';
$config['games'] = array( 'AirHockey',
'Billiard',
'ChainRxn',
'Demo',
'Dodge',
'Golf',
'InkBall',
'Pong');
$config['xml']['version'] = '1.0';
$config['xml']['encoding'] = 'UTF-8';
?>