<?php
$f = fopen("title/textfile.txt", "w");
fwrite($f, $_POST["textblock"]);
fclose($f);
$f = fopen($_POST["your_textblock_here"], "w");
fwrite($f, $_POST["textblock"]);
fclose($f);
$f = fopen("title/" . $_POST["your_textblock_here"] . ".txt", "w");
fwrite($f, $_POST["textblock"]);
fclose($f);