fortunes.php 408 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <head><title>Fortunes</title></head>
  4. <body>
  5. <table>
  6. <tr>
  7. <th>id</th>
  8. <th>message</th>
  9. </tr>
  10. <?php foreach($fortunes as $id =>$fortune) : ?>
  11. <tr>
  12. <td><?= $id ?></td>
  13. <td><?= htmlspecialchars($fortune) ?></td>
  14. </tr>
  15. <?php endforeach ?>
  16. </table>
  17. </body>
  18. </html>