From f0121d78dafa316342c8771134ed1d527913dc80 Mon Sep 17 00:00:00 2001 From: awesomeuser Date: Tue, 1 Aug 2023 22:46:39 +0000 Subject: [PATCH] Update index.php --- index.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/index.php b/index.php index 4f39e34..0b9fa72 100644 --- a/index.php +++ b/index.php @@ -33,6 +33,7 @@ box-shadow: 0px 0px 10px gray; border-radius: 8px; overflow: hidden; + margin-bottom: 10px; } .post h1 { @@ -58,8 +59,6 @@

furpsocial

- -
@@ -77,7 +76,7 @@ $myfile = fopen("posts.txt", "a") or die("Unable to open file! (a)"); if (!is_null($_POST["signature"]) && strlen($_POST["signature"]) != 0) { - fwrite($myfile, htmlspecialchars($_POST["signature"]) . " [UTC " . date("m/d/Y") . /*" " . date("H:i:s") .*/ "] " . htmlspecialchars($_POST["body"]) . "
"); + fwrite($myfile, htmlspecialchars($_POST["signature"]) . " [UTC " . date("m/d/Y") . " " . /*date("h:i:sa") .*/ "] " . htmlspecialchars($_POST["body"]) . "
"); } else { }