%s\n%s
\n\n"; //%s for date and message
//BBCode to HTML
function convert_bbcode ($bbcode) {
//Turn text with bbcode into displayable HTML (supports: b, i, and url)
return preg_replace (
array('/\[b\](.*?)\[\/b\]/is', '/\[i\](.*?)\[\/i\]/is', '/\[url\=(.*?)\](.*?)\[\/url\]/is'),
array('$1', '$1', '$2'),
$bbcode);
}
////////////////////////////////////
?>