Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.
$filename = 'yourfilename.txt';
$new_text = 'the new text';
if(!file_exists($filename)){
touch($filename);
}
$file_content = implode('',file($filename));
$content = $new_text."\n".$file_content;
$handle = fopen($filename, 'wb');
if(fwrite($handle, $content)===FALSE){
echo 'failed to write to '.$filename;
} else {
echo 'wrote "'.$new_text.'" to '.$filename;
}
fclose($handle);
$newtext = trim($_POST['newtext']);
1 to 2 of 2