Advertisement
Equidea

horses.php

Nov 8th, 2019
499
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.72 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Horsegame - Horses</title>
  5. </head>
  6. <body>
  7.     <main class="container">
  8.         <a href="/">Home</a> |
  9.         <a href="/horses.php">Horses</a> |
  10.         <a href="/logout.php">Logout</a>
  11.         <h1>Horses</h1>
  12.         <?php if (!empty($horses)) : ?>
  13.         <table>
  14.             <tr>
  15.                 <th>ID</th>
  16.                 <th>Name</th>
  17.                 <th>Age</th>
  18.                 <th>Gender</th>
  19.                 <th>Color</th>
  20.             </tr>
  21.             <?php foreach ($horses as $horse) : ?>
  22.             <tr>
  23.                 <td><?= $horse['id'] ?></td>
  24.                 <td><?= $horse['name'] ?? 'Unnamed' ?></td>
  25.                 <td><?= $horse['age'] ?></td>
  26.                 <td><?= $horse['gender_name'] ?></td>
  27.                 <td><?= $horse['color_name'] ?></td>
  28.             </tr>
  29.             <?php endforeach; ?>
  30.         </table>
  31.         <?php endif; ?>
  32.     </main>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement