The following files exist in this folder. Click to view.
| Namn | Typ | Storlek |
|---|---|---|
| account.php | PHP Fil | 11.6 KB |
| admin.php | PHP Fil | 23.6 KB |
| authors.php | PHP Fil | 4.1 KB |
| book.php | PHP Fil | 5.9 KB |
| db_cnnt.php | PHP Fil | 407 B |
| header.php | PHP Fil | 1.7 KB |
| home.php | PHP Fil | 8.4 KB |
| index.php | PHP Fil | 5.3 KB |
| loan_handler.php | PHP Fil | 1.9 KB |
| manage_authors.php | PHP Fil | 4.7 KB |
| my_loans.php | PHP Fil | 6.9 KB |
| S.sql | SQL Fil | 3.3 KB |
| search.php | PHP Fil | 11 KB |
db_cnnt.php18 lines ASCII Windows (CRLF) - Type: PHP Fil
<?php
// xiiriirka database
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 . ";dbname=" . DB_NAME . ";charset=utf8mb4",
DB_USER,
DB_PASS
);
// Tidszon
date_default_timezone_set('Europe/Stockholm');
?>