This commit is contained in:
awesomeuser 2023-08-01 22:40:12 +00:00
parent cb2ad6b56e
commit c6b9258a40

View file

@ -77,8 +77,9 @@
$myfile = fopen("posts.txt", "a") or die("Unable to open file! (a)"); $myfile = fopen("posts.txt", "a") or die("Unable to open file! (a)");
if (!is_null($_POST["signature"]) && strlen($_POST["signature"]) != 0) { if (!is_null($_POST["signature"]) && strlen($_POST["signature"]) != 0) {
fwrite($myfile, htmlspecialchars($_POST["signature"]) . " [" . date("m/d/Y") . "] " . htmlspecialchars($_POST["body"]) . "<br>"); fwrite($myfile, htmlspecialchars($_POST["signature"]) . " [" . date("m/d/Y H:i:s") . "] " . htmlspecialchars($_POST["body"]) . "<br>");
} else { } else {
fwrite($myfile, htmlspecialchars("anon [" . date("m/d/Y H:i:s") . "] " . htmlspecialchars($_POST["body"]) . "<br>");
} }
fclose($myfile); fclose($myfile);