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