make post values none after use
This commit is contained in:
parent
ac3bb71bd8
commit
75172b3afb
1 changed files with 3 additions and 0 deletions
|
@ -130,6 +130,9 @@
|
|||
$myfile = fopen("posts.txt", "w") or die("Unable to open file!");
|
||||
fwrite($myfile, $content);
|
||||
fclose($myfile);
|
||||
|
||||
$_POST["signature"] = null;
|
||||
$_POST["body"] = null;
|
||||
}
|
||||
|
||||
// show content
|
||||
|
|
Reference in a new issue