Hello,
I'm quite new to the php world. My one question is that when I open a file using
$fp = fopen($filename, r+)
when I write to the file, am I overwriting the information that is at byte x, or am I inserting new information at byte x and moving what was in byte x to x + y. Where y is the length of the new information?
My plan is to insert the new information into the file where required. This would save on having to rewrite information into the file that is already there. Would I be better off to just overwrite the file in it's intirety??
Thanks in advance for any possible help anyone will be able to give me.
Shaun