" . $signature . "
UTC " . date("Y/m/d H:i") . "" . htmlspecialchars($_POST["body"]) . "
" . $content;
// write string back into the file
$myfile = fopen("posts.txt", "w") or die("Unable to open file!");
fwrite($myfile, $content);
fclose($myfile);
}
?>