Forum Moderators: coopster
Try this:
<textarea name="comments"></textarea>
$comments = $_POST['comments'];
$comments = eregi_replace("\\[url=([^\\[]*)\\]([^\\[]*)\\[/url\\]", "<a href=\"\\1\">\\2</a>", $comments);
Will work for:
[url=http://blah.com]SiteName[/url]
dc