fortunes.html.php 287 B

123456789101112
  1. <!doctype html>
  2. <html>
  3. <head><title>Fortunes</title></head>
  4. <body>
  5. <table>
  6. <tr><th>id</th><th>message</th></tr>
  7. <?php foreach($fortunes as $fortune) { ?>
  8. <tr><td><?php echo $fortune['id']; ?></td><td><?php echo $h($fortune['message']); ?></td></tr>
  9. <?php } ?>
  10. </table>
  11. </body>
  12. </html>