RE: [PHP] how to delete lines in a txt file using php.

2005-07-12 Thread babu
Thanks george, But i want to read for multiple such files and i have many other keywords match which should be deleted.The array of keywords are ("[","TYP","P_MPP","I_MPP","V_MPP","T=","FIT","INTENSITAET"); and i aslo want to write back the reamaining lines after deleting into the same file bu

Re: [PHP] how to delete lines in a txt file using php.

2005-07-11 Thread Richard Lynch
On Mon, July 11, 2005 4:13 pm, babu said: > $f=fopen($file,"w"); http://php.net/fopen "w" will open the file for WRITING, a fresh, new, EMPTY file. You want "r+" or "a+" or "w+" or something similar. -- Like Music? http://l-i-e.com/artists.htm -- PHP General Mailing List (http://www.p