You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WF-Website/index.php

28 lines
548 B

<?php
session_start();
$_SESSION['role']='user';
$_SESSION['user']='bob_brown';
$_SESSION['theme']='dark';
//chargement config
require_once __DIR__ . '/config/config.php';
require __DIR__ . '/vendor/autoload.php';
$co = new \Gateway\Connection("pgsql:host=localhost;dbname={$base};", $login, $mdp);
//twig
$loader = new \Twig\Loader\FilesystemLoader('vue/templates');
$twig = new \Twig\Environment($loader, [
'cache' => false,
]);
$twig->addGlobal('racine','/~kemondejar/WF-Website');
$cont = new Controleur\FrontControler($co);
?>