gestion de la liste
This commit is contained in:
		@@ -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">
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user