burger-quizz/index.php

10 lines
147 B
PHP
Raw Permalink Normal View History

2018-06-07 08:57:43 +00:00
<?php
require_once 'config.php';
require_once 'controller.php';
controller::init();
$controlleur = controller::get();
$controlleur->render();
?>