i have a php file A.php.Every time my page A.php is called i want it to write some data to a file. I want to appent to a existing file and not overwrite
how do i do this
i have a php file A.php.Every time my page A.php is called i want it to write some data to a file. I want to appent to a existing file and not overwrite
how do i do this
To write to file b.txt (for example) use this:
<?php
$fp = fopen('b.txt', 'a');
fwrite($fp, '1');
fclose($fp);
That will write "1" to b.txt every time you run it.
The easiest is to use the file_put_contents function with the FILE_APPEND flag:
file_put_contents('filename', 'data', FILE_APPEND);