14 lines
351 B
PHP
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");
|