Hi,
Well, I am doing my best to erase all the data in the open file. Before writing to the file I want it to be cleared, with no adittional data.
I do like this:
<?php
fopen ($f_handler);
...
fwrite ($f_handler, $myString);
fclose ($f_handler);
?>
So before writing to the file I need to erase all the data it contains.
Thank You !