8 lines
235 B
PHP
8 lines
235 B
PHP
<?php
|
|
// konstanten.php
|
|
define('MYSQL_HOST', 'localhost');
|
|
define('MYSQL_USER', 'web15');
|
|
define('MYSQL_PASS', 'csprristulm');
|
|
define('MYSQL_DATABASE', 'usr_web15_1');
|
|
define('FPDF_FONTPATH','pdf/font/');
|
|
?>
|