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

13 lines
310 B
PHP
Raw Normal View History

2020-10-16 08:16:09 +02:00
<?php
2020-10-16 09:28:41 +02:00
$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");
}
2020-10-16 08:16:09 +02:00