Hi all,
I'm just trying to delete some lines of text from a text file that I open with fopen.
Based on search results I've tried using
This gives no result
I've also tried it as :
Where am I going wrong?
I'm just trying to delete some lines of text from a text file that I open with fopen.
Based on search results I've tried using
Code:
str_replace($_POST['mySearchString'], "", fgets($openedFile));
I've also tried it as :
Code:
str_replace($_POST['mySearchString'], "", $openedFile);
Comment