123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Fortunes</title>
- </head>
- <body>
- <table>
- <tr>
- <th>id</th>
- <th>message</th>
- </tr>
- <?php foreach($fortunes as $fortune): ?>
- <tr>
- <td><?php echo $fortune['id']; ?></td>
- <td><?php echo htmlspecialchars($fortune['message'], ENT_QUOTES, "UTF-8", false); ?></td>
- </tr>
- <?php endforeach; ?>
- </table>
- </body>
- </html>
|