AP44/controleurs/c_gestionFiche.php
2024-01-09 13:04:51 +01:00

14 lines
351 B
PHP

<?php
$_SESSION ["typeU"] = "comptable";
require_once(__DIR__ . '/../Class/class.gestionFiche.php');
$gestionFiche = new Class_gestionFiche($pdo);
$userId = $_SESSION ['uId'];
$LesUtilisateurs = $gestionFiche->getLesUtilisateurs(); //RENVOIE LISTE USERS
$lesFiches = $gestionFiche->get_ListesFiches($userId);
include("vues/v_gestionFiches.php");