1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
PHP_TP3/controllers/c_hello.php
2020-10-16 09:28:41 +02:00

12 lines
310 B
PHP

<?php
$user = false;
if (isset($_POST["username"]) AND $_POST["username"]) {
$username = htmlspecialchars($_POST["username"]);
require_once(PATH_MODELS.$page.".php");
if ($user)
require_once(PATH_VIEWS.$page.".php");
else
require_once(PATH_VIEWS."accueil.php");
}