10 lines
258 B
PHP
10 lines
258 B
PHP
<?php
|
|
|
|
defined('VALID_INCLUDE') or exit('Restricted area');
|
|
|
|
// pripojeni k databazi
|
|
$cfg['Connection']['link'] = sqlConnect($cfg['Connection']['host'],
|
|
$cfg['Connection']['user'],
|
|
$cfg['Connection']['password'],
|
|
$cfg['Connection']['database']);
|