How would I go about storing the recent entrys in a flat file? EX. You submit your name Your name is added into a flat file (at the top) and the name at the bottom is erased. Limit ten. How?
Open/read the file. Split the content into an array using newline separator. Create a new array, with the new item and add 9 of the 10 items in the first array. Write the new content. Peace,