This repository has been archived on 2025-02-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tp_twigg/tpCrudTwig/public/index.php
2024-10-25 16:49:52 +02:00

13 lines
288 B
PHP

<?php
session_start();
$SERVER_ROOT = $_SERVER['DOCUMENT_ROOT'] . "/tpCrudTwig";
require_once($SERVER_ROOT . "/src/User.php");
require_once($SERVER_ROOT . "/src/Twig.php");
renderTwig("users/index.twig", array("users" => GetUsers()));
$_SESSION['message'] = $_SESSION['error'] = "";