I am able to write to a file using the data from a form, but each time I do, it overwrites the previous entry. How do you cause the new data to be added to the end of the file? Thanks a lot.
if you use fopen make sure to use fopen("yourfile", "a")
this will open the file for appending