26 lines
547 B
PHP
26 lines
547 B
PHP
|
<?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();
|
||
|
?>
|