fortunes.php 293 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 htmlentities($fortune->message)?></td></tr>
  9. <?php endforeach;?>
  10. </table>
  11. </body>
  12. </html>