Hello,
I am using PHP to write data to a text file.
For example, the text file will contain:
this is a test
The next time I want to write to the text file, I want my data to appear before what was already there. For example, "blah". I want it to appear as:
blah this is a test
Instead of "this is a test blah". How do I do this?
Thanks,
J. Kim