Update MVC modèle

All components are in MVC mode
Bug to registre presente
This commit is contained in:
ccunatbrule
2023-10-13 17:00:34 +02:00
parent e7568e24b8
commit f5999a03b5
47 changed files with 590 additions and 497 deletions

View File

@@ -0,0 +1,12 @@
<?php
include_once('./modele/home.php');
$titre = "Index du forum";
//Initialisation de deux variables
$totaldesmessages = 0;
$categorie = NULL;
$TotalDesMembres = get_MemberCount();
$TotalDesVoitures = get_VoitureCount();
$data = get_LastMember();
$derniermembre = stripslashes(htmlspecialchars($data['pseudo']));
include_once('./vue/home.html');