9 lines
302 B
PHP
9 lines
302 B
PHP
<?php
|
|
$RUNTIME['PDO'] = new PDO('mysql:host=...;dbname=...', '...', '...');
|
|
|
|
$RUNTIME['SMTP']['SERVER'] = "localhost";
|
|
$RUNTIME['SMTP']['PORT'] = 25;
|
|
$RUNTIME['SMTP']['ADRESS'] = "noreplay@localhost";
|
|
$RUNTIME['SMTP']['USER'] = "noreplay@localhost";
|
|
$RUNTIME['SMTP']['PASS'] = "...";
|
|
?>
|