View sourcecode

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

config.php

15 lines ASCII Unix (LF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
$dsn 
"mysql:host=server1.serverdrift.com;dbname=als060502sa_P02;charset=utf8mb4";
$user "Intentionally removed by CSource";
$pass "Chesterb3000";

try {
    
$db = new PDO($dsn$user$pass);
    
$db->setAttribute(PDO::ATTR_ERRMODEPDO::ERRMODE_EXCEPTION);
} catch (
PDOException $e) {
    die(
"DB error: " $e->getMessage());
}

session_start();
?>