does anyone konw how to write something at the end of the file, couse i try to use fwrite(), but it always write at the beginning of the file, and recover the old information.
use append mode:
$fp = fopen("myfile", "a");
Read the PHP manual section about fopen() again. You can open a file for reading, writing and appending.