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