config.php 349 B

12345678910111213
  1. <?php
  2. class Config {
  3. public static $DATABASE = array (
  4. // Data Source Name, contains the information required to connect to the database
  5. 'dsn' => 'mysql:host=localhost;dbname=freepost;charset=utf8',
  6. 'username' => 'freepost',
  7. 'password' => 'freepost'
  8. );
  9. public static $SEND_EMAILS = true;
  10. }