This commit is contained in:
awesomeuser 2023-08-04 15:48:43 +00:00
parent 31b7aa72ed
commit 1ea78bcaac

View file

@ -177,6 +177,12 @@
<h1 class="feed-header">Global Feed</h1> <h1 class="feed-header">Global Feed</h1>
<span class="post" id="refresh" onclick="window.location.href = 'index.php'">refresh feed</span> <span class="post" id="refresh" onclick="window.location.href = 'index.php'">refresh feed</span>
<div class='post'>
<h2>name</h2>
<i>UTC date</i>
<canvas style="width: 100%;" width="128" height="64"></canvas>
</div>
<?php <?php
// ensure the file exists before attempting to read from it // ensure the file exists before attempting to read from it
if (!file_exists("posts.txt")) { if (!file_exists("posts.txt")) {
@ -184,12 +190,6 @@
fclose($myfile); fclose($myfile);
} }
<div class='post'>
<h2>name</h2>
<i>UTC date</i>
<canvas style="width: 100%;" width="128" height="64"></canvas>
</div>
// show content // show content
$myfile = fopen("posts.txt", "r") or die("Unable to open file!"); $myfile = fopen("posts.txt", "r") or die("Unable to open file!");
if ($myfile) { if ($myfile) {