ニジカもんすたぁ!! トップ・ページ https://nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.frm.php 1.3 KiB

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="ja">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />
  7. <title>伊地知ニジカ放送局 - ニジカ返答ログ</title>
  8. </head>
  9. <body>
  10. <?php foreach (array_reverse ($log_data) as $record): ?>
  11. <div class="mb-4">
  12. <div>
  13. <?= $record['date_time'] ?>
  14. </div>
  15. <div>
  16. <img src="<?= $record['chat_icon'] ?>" />
  17. <?= $record['chat_name'] ?>
  18. </div>
  19. <div style="color: blue">
  20. &gt; <span style="font-style: italic"><?= $record['chat_message'] ?></span>
  21. </div>
  22. <div>
  23. <?= $record['answer'] ?>
  24. </div>
  25. </div>
  26. <?php endforeach ?>
  27. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
  28. </body>
  29. </html>