gestion de la liste
This commit is contained in:
parent
fa1bacb404
commit
53179a0a85
@ -1,9 +1,9 @@
|
||||
<?php
|
||||
$_SESSION ["typeU"] = "comptable";
|
||||
|
||||
require_once(__DIR__ . '/../Class/class.gestionFiche.php');
|
||||
$gestionFiche = new Class_gestionFiche($pdo);
|
||||
|
||||
$LesUtilisateurs = $gestionFiche->getLesUtilisateurs(); //RENVOIE LISTE USERS
|
||||
|
||||
$_SESSION['typeU'] = 'comptable';
|
||||
include("../vues/v_gestionFiches.php");
|
||||
include("vues/v_gestionFiches.php");
|
||||
|
@ -1,11 +1,21 @@
|
||||
<center>
|
||||
<div class="col-3 mb-4">
|
||||
<?php
|
||||
|
||||
?>
|
||||
<h3>Gerer mes fiches de frais</h3>
|
||||
<br>
|
||||
<?php
|
||||
if ($_SESSION['typeU'] == 'comptable') {
|
||||
echo '<select class="form-select" name="selVisiteur" id="">
|
||||
<option value="visiteur1">Visiteur 1</option></select>';
|
||||
echo '<select class="form-select" name="selVisiteur" id="">';
|
||||
foreach ($LesUtilisateurs as $key => $value) {
|
||||
$id = $value['uId'];
|
||||
$prenom = $value['uPrenom'];
|
||||
$nom = $value['uNom'];
|
||||
|
||||
echo '<option value="' . $id . '">' . $nom . " " . $prenom . "</option>";
|
||||
}
|
||||
echo '</select>';
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
@ -44,6 +54,10 @@
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
PAGINATION:// NE PAS TOUCHER
|
||||
-->
|
||||
<div class="col-4 d-flex mx-auto">
|
||||
<nav aria-label="...">
|
||||
<ul class="pagination">
|
||||
|
Loading…
x
Reference in New Issue
Block a user