I have been adding my own bb code to my site and have come across a small problem...
For basic bbcode I use this
Bold
$scan = str_replace("[ b ]", "<b>", $scan);
$scan = str_replace("[ /b ]", "</b>", $scan);
For things like [ url = www.web.com]Link[ /url ]
How can I strip this into
$url=www.web.com
$displayurl=Lnk
Any ideas?