Update index.php
This commit is contained in:
parent
e7ba993233
commit
058a998ffe
1 changed files with 6 additions and 8 deletions
14
index.php
14
index.php
|
@ -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>
|
||||
|
|
Reference in a new issue