Hello,
Let's say I have the fallowing variable:
$toto = 'Example...
<a href="http://www.example.com">example.com</a>
Some HTML <b>Like bold</b> etc...
<a href="http://www.example.net">example.net</a>
<a href="http://www.example.org">example.org</a>
etc...';
I want to add to each link to fallowing code:
target="_blank"
So each link be as fallow:
<a href="http://example.org" target="_blank">example.org</a>
How can I do that?
Many thanks in advance...