so what you are saying is set it up like this??
$old = fopen("text.txt","r");
rewind($old);
$new = fopen("text.txt","w");
fwrite($new,"content<br><br>");
$write = fopen("news.txt","a");
fwrite($write,"$old");
when i do that tho all it does is write whatever the new data is. it doesnt even bother to rewrite the stuff i opened