Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.60 KB | None | 0 0
  1. <table class="table table-striped table-hover">
  2.                         <thead>
  3.                             <tr>
  4.                                 <th>Pseudo</th>
  5.                                 <th>Nom</th>
  6.                                 <th>Prenom</th>
  7.                                 <th>E-Mail</th>
  8.                             </tr>
  9.                         </thead>
  10.                         <tbody>
  11.                             <?php $user = Model::getUsers();
  12.                             for ($i = 0; $i< count($user); $i++) { ?>
  13.                             <tr>
  14.                                 <th><?php echo $user[$i]->getUsername(); ?></th>
  15.                                 <th><?php echo $user[$i]->getName() ?></th>
  16.                                 <th><?php echo $user[$i]->getFirstname() ?></th>
  17.                                 <th><?php echo $user[$i]->getEmail() ?></th>
  18.                            </tr>
  19.                            <?php } ?>
  20.                         </tbody>
  21.                     </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement