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.
|
- <!DOCTYPE html>
- <html lang="ja">
- <head>
- <meta charset="UTF-8" />
- </head>
-
- <body>
- <?php foreach (array_reverse ($log_data) as $record): ?>
- <div style="margin-bottom: 24px">
- <div>
- <?= $record['date_time'] ?>
- </div>
-
- <div>
- <img src="<?= $record['chat_icon'] ?>" />
- <?= $record['chat_name'] ?>
- </div>
-
- <div style="color: blue">
- > <span style="font-style: italic"><?= $record['chat_message'] ?></span>
- </div>
-
- <div>
- <?= $record['answer'] ?>
- </div>
- </div>
- <?php endforeach ?>
- </body>
- </html>
|