scraftia-web/docs/chat.php

26 lines
547 B
PHP
Raw Normal View History

2025-02-08 00:52:59 -05:00
<?php
require(__DIR__ . "/../libs/header.php");
page_header();
$msgs = json_decode(file_get_contents('https://mcp.dervland.net/messages'),true);
foreach ($msgs as $msg) {
?>
<div class="comment">
<div class="avatar">
<div>
<div><b>
<?php echo htmlspecialchars($msg['username']); ?>
</b></div>
<div><b>
<?php echo date(DATE_RFC2822, $msg['date'] * 0.001); ?>
</b></div>
</div>
</div>
<?php echo htmlspecialchars($msg['content']); ?>
</div>
<?php
}
page_footer();
?>