</tbody>
                    </table>
                </div>

                <div class="tab-pane fade" id="Utilisateur">
                    <table class="table table-hover">
                        <thead>
                            <tr>
                                <th>Nom</th>
                                <th>Prénom</th>
                                <th>Login</th>
                            </tr>
                        </thead>
                        <tbody>
                            <?php 
$myusers = $users->getAllUsers();
foreach ($myusers as $u) {
    echo "<tr>";
    echo "<td>" . escape($u->getName()) . "</td>";
    echo "<td>" . escape($u->getFirstName()) . "</td>";
    echo "<td>" . escape($u->getLogin()) . "</td>";
    echo "</tr>";
}
?>
                        </tbody>
                    </table>
                </div>

                <div class="tab-pane fade" id="Categorie">
                    <table class="table table-hover">
                        <thead>