$filelog = fopen("2ndlog.php","a+");
fwrite($filelog,"\n $mailtext <br> \n");
fclose($filelog);
<?php
$file_data = "Stuff you want to add\n";
$file_data .= file_get_contents('database.txt');
file_put_contents('database.txt', $file_data);
?>
$filelog = fopen("2ndlog.php","x");
fwrite($filelog,"\n $mailtext <br> \n");
fclose($filelog);