8 lines
228 B
PHP
8 lines
228 B
PHP
<?php
|
|
// konstanten.php
|
|
define('MYSQL_HOST', 'localhost');
|
|
define('MYSQL_USER', 'web24');
|
|
define('MYSQL_PASS', 'lmaa,dw.');
|
|
define('MYSQL_DATABASE', 'usr_web24_2');
|
|
define('FPDF_FONTPATH','font/');
|
|
?>
|