Advertisement
abbest

affiche_annonce.phtml

Mar 28th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.14 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html lang="en-US">
  3. <head>
  4.   <title>Liste des utilisateurs</title>
  5.   <meta charset="utf-8">
  6.   <meta name="viewport" content="width=device-width, initial-scale=1">
  7.   <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  8.   <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  9.   <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  10. </head>
  11. <body>
  12.     <div class="container">
  13.   <h2>Liste des annonces</h2>            
  14.   <table class="table table-bordered">
  15.     <thead>
  16.       <tr>
  17.         <th>ID</th>
  18.         <th>Ville</th>
  19.         <th>Categorie</th>
  20.         <th>Titre</th>
  21.         <th>Contenu</th>
  22.       </tr>
  23.     </thead>
  24.     <tbody>
  25.       <?php foreach($donnees as $ligne):?>
  26.       <tr>
  27.         <td><?php echo $ligne['id']?></td>
  28.         <td><?php echo $ligne['ville']?></td>
  29.         <td><?php echo $ligne['categorie']?></td>
  30.         <td><?php echo $ligne['titre']?></td>
  31.         <td><?php echo $ligne['contenu']?></td>
  32.       </tr>
  33.       <?php endforeach; ?>
  34.     </tbody>
  35.   </table>
  36. </div>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement