I have a text file, and I want to write to the end of it. When I tryed using this
This is new
it gave me this
text is new
now I want it to write to the end of the file so it turns out like
This is new text
Thanks - Rayn
$fp = fopen ("filename.txt", "a+"); fwrite($fp," text"); fclose($fp);