anon update
This commit is contained in:
parent
238a0ec1cd
commit
0c09aa4059
1 changed files with 7 additions and 1 deletions
|
@ -41,7 +41,13 @@
|
||||||
// write to file
|
// write to file
|
||||||
if (!is_null($_POST["body"]) && strlen($_POST["body"]) != 0) {
|
if (!is_null($_POST["body"]) && strlen($_POST["body"]) != 0) {
|
||||||
$myfile = fopen("posts.txt", "a") or die("Unable to open file! (a)");
|
$myfile = fopen("posts.txt", "a") or die("Unable to open file! (a)");
|
||||||
fwrite($myfile, htmlspecialchars($_POST["signature"]) . ": " . htmlspecialchars($_POST["body"]) . "<br>");
|
|
||||||
|
if (strlen($_POST["signature"]) != 0) {
|
||||||
|
fwrite($myfile, htmlspecialchars($_POST["signature"]) . ": " . htmlspecialchars($_POST["body"]) . "<br>");
|
||||||
|
} else {
|
||||||
|
fwrite($myfile, "anon: " . htmlspecialchars($_POST["body"]) . "<br>");
|
||||||
|
}
|
||||||
|
|
||||||
fclose($myfile);
|
fclose($myfile);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue