fortunes.php 417 B

123456789101112131415161718
  1. <?php /*** @var array $rows */?><!DOCTYPE html>
  2. <html lang="en">
  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 ($rows as $row): ?>
  11. <tr>
  12. <td><?= \htmlspecialchars($row['id']) ?></td>
  13. <td><?= \htmlspecialchars($row['message']) ?></td>
  14. </tr>
  15. <?php endforeach; ?>
  16. </table>
  17. </body>
  18. </html>