I can't remember the function to reverse the way in which data is inputted into a file - for example, data may be at the bottom but there's something that reverses it that makes it appear at the top of the file. I've forgotten what it is, can anybody give me some help? Thanks.
MVC is the current buzz in web application architectures. It comes from event-driven desktop application design and doesn't fit into web application design very well. But luckily nobody really knows what MVC means, so we can call our presentation layer separation mechanism MVC and move on. (Rasmus Lerdorf)
If we are talking about files here, you will have to assign the data to a variable, open the file, read its contents, append them to previously mentioned string variable and rewrite the file with the new string variable as new contents.