...$contents = file_get_contents('path/to/page.html');
mv('/path/to/page.html', 'path/to/page.html_'.time());
$newcontents = preg_replace('/(<!---TEMPLATE--->).*?(<!---ENDTEMPLATE--->)/','$1'.nl2br(trim($_POST['textarea'])).'$2', $contents);
file_put_contents('path/to/page.html', $newContents);
}