31 lines
722 B
PHP
31 lines
722 B
PHP
<!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>
|
|
|