Visa Källkod

The following files exist in this folder. Click to view.

NamnTypStorlek
actions.phpPHP Fil8.5 KB
admin.phpPHP Fil11.1 KB
auth.phpPHP Fil4.5 KB
change_password.phpPHP Fil3.4 KB
check_login.phpPHP Fil211 B
config.phpPHP Fil411 B
index.phpPHP Fil4 KB

config.php

17 lines ASCII Windows (CRLF) - Type: PHP Fil
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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_USERDB_PASS
);

// Tidszon
date_default_timezone_set('Europe/Stockholm');
?>