Still, I don´t know how to create real new line breaks. Using something like this:
$fp=fopen("news.tmp","w");
fputs($fp,$final_message."\n");
fputs($fp,$CurrentUser->name."\n");
fputs($fp,date("d.M.Y H:i:s",time())."\n");
creates this appearance in the Win-Editor:
I am the message which has been saved in a txt file
JayDee
13.Dec.2000 09:23:08
And this is how it actually should look like:
I am the message which has been saved in a txt file
JayDee
13.Dec.2000 09:23:08
I presume that this is just an interpretation problem of the Win-Editor because in the Wordpad everything is fine. But even if it is only this - is there a way to prevent that and write "real" line breaks in a txt-file?