ニジカもんすたぁ!! トップ・ページ 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.
 
 
 
 

34 lines
1.1 KiB

  1. <!DOCTYPE html>
  2. <html lang="ja">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />
  6. </head>
  7. <body>
  8. <?php foreach (array_reverse ($log_data) as $record): ?>
  9. <div style="margin-bottom: 24px">
  10. <div>
  11. <?= $record['date_time'] ?>
  12. </div>
  13. <div>
  14. <img src="<?= $record['chat_icon'] ?>" />
  15. <?= $record['chat_name'] ?>
  16. </div>
  17. <div style="color: blue">
  18. &gt; <span style="font-style: italic"><?= $record['chat_message'] ?></span>
  19. </div>
  20. <div>
  21. <?= $record['answer'] ?>
  22. </div>
  23. </div>
  24. <?php endforeach ?>
  25. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
  26. </body>
  27. </html>