Update index.php

This commit is contained in:
awesomeuser 2023-08-01 19:45:12 +00:00
parent e7ba993233
commit 058a998ffe

View file

@ -28,7 +28,6 @@
<h1 style="margin: 0; font-size: 20px;"><span style="color: var(--accent);">furp</span>social</h1>
<hr>
<br><br>
<form method="post">
<textarea id="body-input" name="body"></textarea>
@ -36,15 +35,14 @@
<input type="submit">
</form>
<br><br>
<hr>
<br><br>
<?php
echo $_POST["signature"] + "<br>";
echo $_POST["body"] + "<br>";
echo readfile("posts.txt");
?>
<?php echo $_POST["signature"]; ?>
<br>
<?php echo $_POST["body"]; ?>
<br>
<?php echo readfile("posts.txt"); ?>
</div>
</body>