diff --git a/index.php b/index.php
index 52fd7c6..5147550 100644
--- a/index.php
+++ b/index.php
@@ -77,7 +77,7 @@
-
+
" . $content;
-
- // write string back into the file
- $myfile = fopen("posts.txt", "w") or die("Unable to open file!");
- fwrite($myfile, $content);
- fclose($myfile);
-
- $_POST = array();
- }
+ // // make sure the file, well, exists
+ // $myfile = fopen("posts.txt", "a");
+ // fclose($myfile);
// show content
- echo $content;
+ $myfile = fopen("posts.txt", "r") or die("Unable to open file!");
+ echo fread($myfile, filesize("posts.txt"));
+ fclose($myfile);
?>