Posted by Georgi Ivanov on 12/06/05 12:53
Hi,
I want to replace the content of html links : <a href="foo"
name="bla">REPLACETHIS</a>.
$html=preg_replace("/(<a.*name=.*>)(.*)<\/a>/isU",$link,$html,1);
This generally works but removes <a>,</a> tags too.
How to make it work without removing anything else than (.*) in the middle of
<a>.*</a>
Thanks in advance.
[Back to original message]
|