Hello,
How can I make a function which detects URLs from a string and makes them as links?
<code><pre>
$string = "Check this address www.phpbuilder.com";
$newstring = "Check this address <a href=\"http://www.phpbuilder.com\">www.phpbuilder.com</a>";
</pre></code>