show file please

This commit is contained in:
awesomeuser 2023-08-04 16:15:51 +00:00
parent 2265ffb3f2
commit 634df4995f

View file

@ -162,16 +162,6 @@
} }
</script> </script>
<!--<h1 class="feed-header">Farp highlights</h1>-->
<div class="post">
Furp social is currently under construction as we implement oekaki farping. Come back soon!
</div>
</div>
<div id="content-column">
<!-- save most recent signature as a cookie and autoload on page load --> <!-- save most recent signature as a cookie and autoload on page load -->
<script> <script>
function logSignature() { function logSignature() {
@ -187,6 +177,16 @@
} }
</script> </script>
<!--<h1 class="feed-header">Farp highlights</h1>-->
<div class="post">
Furp social is currently under construction as we implement oekaki farping. Come back soon!
</div>
</div>
<div id="content-column">
<!-- feed display --> <!-- feed display -->
<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>
@ -200,19 +200,22 @@
<?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")) {
$myfile = fopen("posts.txt", "a"); $myfile = fopen("posts.txt", "w");
fclose($myfile); fclose($myfile);
} }
// 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) { echo fread($myfile,filesize("posts.txt"));
while (($line = fgets($myfile)) !== false) {
echo $line;
}
fclose($myfile); fclose($myfile);
} // $myfile = fopen("posts.txt", "r") or die("Unable to open file!");
// if ($myfile) {
// while (($line = fgets($myfile)) !== false) {
// echo $line;
// }
// fclose($myfile);
// }
?> ?>
</div> </div>