This commit is contained in:
fra-2107
2024-11-22 13:58:16 -05:00
parent c6cf2b07f6
commit d4ae3c236b
13 changed files with 524 additions and 0 deletions

7
web2/php/constants.php Normal file
View File

@ -0,0 +1,7 @@
<?php
// Database constants.
define('DB_USER', 'sidps');
define('DB_PASSWORD', 'sidps');
define('DB_NAME', 'sidps');
define('DB_SERVER', 'localhost');
?>