RE: [PHP] Search replace text

2001-02-13 Thread PHPBeginner.com
tsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -Original Message- From: CDitty [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 3:29 AM To: PHPBeginner.com Subject: RE: [PHP] Search replace text Thanks for the ide

RE: [PHP] Search replace text

2001-02-13 Thread PHPBeginner.com
ely, Maxim Maletsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -Original Message- From: PHPBeginner.com [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 11:34 PM To: PHP; CDitty Subject: RE: [PHP] Search repla

RE: [PHP] Search replace text

2001-02-12 Thread PHPBeginner.com
instead of writing to you the code I'll give you an idea: 1. you open the file and read it line-by-line assigning it to an array, 2. you loop that array parsing it line by line changing it's values with RegEx the way you want. 3. you open the same file and, looping the array writing it down

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-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? I