pp wrote:
> I am not PHP master ;)
> and I took and example from php.net to replace some values
> in article content, but it looks like not working.
> Do You have any suggestions with:
>
> <? $string = "$article->content";
Maybe
$string = $article->content;
I don't know how well PHP handles inline object references.
> echo eregi_replace ("aa", "bb", $string);
> echo "$string";
> ?>
Emile
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]