Hi,
Please excuse if similar query has been posted earlier.
I have text file in which I have to search a word and replace it with a new word.
First I do is get the fopen the file,then read the contents , maintain a string $newcontent that holds the contents of file ,the moment i get my word,replace it with new word in the string $newcontent
After that I write the whole string $newcontent to file again.
What I want is to just while scanning the file,the moment I find my word,replace it with new word there only instead of rewriting the whole file again.
Regards