I am making a forum and I am trying to add VB code into it. I have never used it in a forum before so I am not sure how to so this. In my code I go strip_tags to the main content and to the title. Then I go
$content = str_replace("[url]", "<a>", $content);
$content = str_replace("[/url]", "</a>", $content);
and then If I make a post like this
http://www.msn.com
all that will show up is http://www.msn.com and it is not a link. What am I doing wrong, I even tried no having strip_tags in there but i dosenm't work