Quote database webapp
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

settings.php 704B

123456789101112131415161718192021
  1. <?PHP
  2. /* This is the settings file for the quotes database.
  3. *
  4. * You can either alter the constants below to configure the db,
  5. * or you can copy them to settings.private.php (which is excluded
  6. * from the VCS, if you're interested in developing the db further)
  7. */
  8. if (file_exists(dirname(__FILE__) . '/settings.private.php')) {
  9. require_once(dirname(__FILE__) . '/settings.private.php');
  10. } else {
  11. define('BASE', '/quotes/'); // Absolute path to the quotes db
  12. define('MYSQL_SERVER', 'localhost'); // MySQL server
  13. define('MYSQL_USER', ''); // MySQL user
  14. define('MYSQL_PASS', ''); // MySQL password
  15. define('MYSQL_DB', ''); // MySQL db name
  16. }
  17. ?>