RE: [PHP] Replacing A Word in HTML page

2001-02-05 Thread PHPBeginner.com
PROTECTED]] Sent: Monday, February 05, 2001 3:23 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Replacing A Word in HTML page Thanks for your answerm but what does eregi_replace() do? Regards "Steve Werby" <[EMAIL PROTECTED]> wrote in message 045801c08e7f$3c4f61c0$6401a8c0@mobile&qu

Re: [PHP] Replacing A Word in HTML page

2001-02-04 Thread Christian Reiniger
On Sunday 04 February 2001 19:23, phpLover wrote: > Thanks for your answerm but what does eregi_replace() do? Exactly the thing that's written in the documentation for it :) -- Christian Reiniger LGDC Webmaster (http://sunsite.dk/lgdc/) The most exciting phrase to hear in science, the one that

Re: [PHP] Replacing A Word in HTML page

2001-02-04 Thread Steve Werby
"phpLover" <[EMAIL PROTECTED]> wrote: > Thanks for your answerm but what does eregi_replace() do? Short answer is to see http://www.php.net/manual/en/function.eregi-replace.php. Usage examples can be found right on php.net. See longer answer below. Previously "phpLover" <[EMAIL PROTECTED]> wro

Re: [PHP] Replacing A Word in HTML page

2001-02-04 Thread phpLover
Thanks for your answerm but what does eregi_replace() do? Regards "Steve Werby" <[EMAIL PROTECTED]> wrote in message 045801c08e7f$3c4f61c0$6401a8c0@mobile">news:045801c08e7f$3c4f61c0$6401a8c0@mobile... > "phpLover" <[EMAIL PROTECTED]> wrote: > > I want to read an HTML page from another site and

Re: [PHP] Replacing A Word in HTML page

2001-02-03 Thread Steve Werby
"phpLover" <[EMAIL PROTECTED]> wrote: > I want to read an HTML page from another site and replace certain characters > with capital letters and show them in another dynamically generated web page > on my site. I know this is possible in Perl, but can this be done in PHP? If > yes, then how? It's