Initial commit
This commit is contained in:
13
config.php.example
Normal file
13
config.php.example
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
define("CONFIG_DB_DSN", "mysql:host=localhost;dbname=rfdb");
|
||||
define("CONFIG_DB_USER", "username");
|
||||
define("CONFIG_DB_PASSWORD", "password");
|
||||
|
||||
define("CONFIG_DB_OPTS", [
|
||||
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
|
||||
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
|
||||
PDO::ATTR_EMULATE_PREPARES => false
|
||||
]);
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user