// author: Louai Munajim
// website: http://elouai.com
// date: 2004/Apr/18
function bb2html($text)
{
$bbcode = array("<", ">",
"
- ", "[*]", "
"",
"", "",
"", "",
"", "",
'[color="', "[/color]",
"[size=\"", "[/size]",
'[url="', "[/url]",
"[mail=\"", "[/mail]",
"
", "
","
", "
",'"]');
$htmlcode = array("<", ">",
"
- ", "
- ", "
"",
"", "",
"", "",
"", "",
"",
"",
'",
"",
"
", "
","
", " |
'">');
$newtext = str_replace($bbcode, $htmlcode, $text);
$newtext = nl2br($newtext);//second pass
return $newtext;
} ?>