The file in that image is called "dump.php", that is a textfield, and the "save" button posts to a file called "post.php" which sends the information to a text file.
The form in dump.php is:
<form id="form1" name="form1" method="post" action="post.php">
<p align="right"><textarea name="textfield" cols="100" rows="25"><?php readfile("./stats/text.txt"); ?>
</textarea></p>
</p>
<p align="right">
<input type="submit" value="Save" />
<br />
</p>
</form>
and the post.php is:
<?php
if(isset($_POST['textfield']))
{
$File = "./stats/text.txt";
$Handle = fopen($File, 'w');
$Data = stripslashes("{$_POST['textfield']}");
fwrite($Handle, $Data);
fclose($Handle);
header( 'Location: dump.php' ) ;
}
?>