Files
nizika/broadcast/index.frm.php
T
2023-12-07 01:38:24 +09:00

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">
&gt; <span style="font-style: italic"><?= $record['chat_message'] ?></span>
</div>
<div>
<?= $record['answer'] ?>
</div>
</div>
<?php endforeach ?>
</body>
</html>