The following files exist in this folder. Click to view.
| Namn | Typ | Storlek |
|---|---|---|
| actions.php | PHP Fil | 8.5 KB |
| admin.php | PHP Fil | 11.1 KB |
| auth.php | PHP Fil | 4.5 KB |
| change_password.php | PHP Fil | 3.4 KB |
| check_login.php | PHP Fil | 211 B |
| config.php | PHP Fil | 411 B |
| index.php | PHP Fil | 4 KB |
config.php17 lines ASCII Windows (CRLF) - Type: PHP Fil
<?php
// Databas definationer & info
define('DB_HOST', 'localhost');
define('DB_NAME', "Intentionally removed by CSource");
//define('DB_PORT', '1889');
define('DB_USER', "Intentionally removed by CSource");
define('DB_PASS', "Intentionally removed by CSource");
$pdo = new PDO(
"mysql:host=" . DB_HOST //. ";port=" . DB_PORT //
. ";dbname=" . DB_NAME, DB_USER, DB_PASS
);
// Tidszon
date_default_timezone_set('Europe/Stockholm');
?>