Idea's For Admin
Posted: Tue Nov 13, 2012 3:38 am
Any chance of getting some bb codes put into the web teases?
php:
php:
Code: Select all
function bbcodes($text){ //bold bb code: [b]text[/b]$text = preg_replace("/\[b\](.*?)\[\/b\]/i","<b>\\1</b>", $text); //underlined bb code: [u]text[/u]$text = preg_replace("/\[u\](.*?)\[\/u\]/i","<u>\\1</u>", $text); //url bb code: [url=address]Link Name[/url]$text = preg_replace("/\[url\=(.*?)\](.*?)\[\/url\]/is","<a href=\"$1\">$2</a>",$text); reurn $text;}