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

31 lines
722 B

  1. <!DOCTYPE html>
  2. <html lang="ja">
  3. <head>
  4. <meta charset="UTF-8" />
  5. </head>
  6. <body>
  7. <?php foreach (array_reverse ($log_data) as $record): ?>
  8. <div style="margin-bottom: 24px">
  9. <div>
  10. <?= $record['date_time'] ?>
  11. </div>
  12. <div>
  13. <img src="<?= $record['chat_icon'] ?>" />
  14. <?= $record['chat_name'] ?>
  15. </div>
  16. <div style="color: blue">
  17. &gt; <span style="font-style: italic"><?= $record['chat_message'] ?></span>
  18. </div>
  19. <div>
  20. <?= $record['answer'] ?>
  21. </div>
  22. </div>
  23. <?php endforeach ?>
  24. </body>
  25. </html>