Initial commit

This commit is contained in:
2026-04-12 02:20:01 +02:00
commit 6c3e922080
8 changed files with 505 additions and 0 deletions

13
config.php.example Normal file
View 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
]);
?>