RE: [PHP] Search & replace text

2001-02-13 Thread PHPBeginner.com
Sorry, I made a small mistake in my code ... this is correct: $contents = file ($file); for($i=0; $imailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 11:34 PM To: PHP; CDitty Subject: RE: [PHP] Search & replace text ok, here's a scratch: $contents = file ($file); for($i=0;

RE: [PHP] Search & replace text

2001-02-13 Thread PHPBeginner.com
ok, here's a scratch: $contents = file ($file); for($i=0; $imailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 3:29 AM To: PHPBeginner.com Subject: RE: [PHP] Search & replace text Thanks for the idea. Can you give me an example of how to load a file into an array? My effor

Re: [PHP] Search & replace text

2001-02-12 Thread Christian Reiniger
On Monday 12 February 2001 01:22, David Robley wrote: > > while (!feof($file)) { > > $line = fgets($file, 255); > > if(eregi($oldemail, $line, $out)) { > > str_replace($oldemail, $newemail, $line); > > You need to assign the output of this function to a string: >

RE: [PHP] Search & replace text

2001-02-12 Thread PHPBeginner.com
01 5:12 AM To: [EMAIL PROTECTED] Subject: [PHP] Search & replace text Hello all. I am trying to search through a text file on my server to replace the user email. I can open the file and read it, but cannot get it to "find" the actual string and replace it. Can someone look over

Re: [PHP] Search & replace text

2001-02-11 Thread David Robley
On Mon, 12 Feb 2001 06:41, CDitty wrote: > Hello all. I am trying to search through a text file on my server to > replace the user email. I can open the file and read it, but cannot > get it to "find" the actual string and replace it. Can someone look > over my code and see what the problem is?

[PHP] Search & replace text

2001-02-11 Thread CDitty
Hello all. I am trying to search through a text file on my server to replace the user email. I can open the file and read it, but cannot get it to "find" the actual string and replace it. Can someone look over my code and see what the problem is? I am afraid that ereg is not my strongest p