blob: e58a7eb1f4fc25d37ef9208cdeecb9e2e77ed2cb [file] [log] [blame]
avm9996370995382020-09-23 01:03:01 +02001<?php
2// core.php - El fitxer més elemental, estimat Watson
3
4// Get settings
5require(__DIR__.'/config.php');
6
7// Set composer
8require(__DIR__.'/vendor/autoload.php');
9
10// Set timezone and locale accordingly
11date_default_timezone_set('Europe/Madrid');
12
13// Connect to the DB
14$con = new PDO('mysql:host='.$conf['db']['host'].';dbname='.$conf['db']['database'].';charset=utf8mb4', $conf['db']['user'], $conf['db']['password']);
15
16// Session settings
17session_set_cookie_params([
18 'lifetime' => 0,
19 'path' => ($conf['path'] ?? '/'),
20 'httponly' => true
21]);
22session_start();