function bbcode($text)
{
// Suchmuster festlegen
$search = array(
'!\[b\](.*)\[\/b\]!isU',
'!\[i\](.*)\[\/i\]!isU',
'!\[u\](.*)\[\/u\]!isU',
'!\[img\](.*)\[\/img\]!isU',
'!\[url=(.*)\](.*)\[\/url\]!isU',
'!\[url\](.*)\[\/url\]!isU',
'!\[code\](.*)\[\/code\]!isU',
);
// Ersetzmuster festlegen
$replace = array(
'$1',
'$1',
'$1',
'
',
'$2',
'$1',
'$1',
);
$neuertext = stripslashes($text);
$neuertext = preg_replace($search,$replace,$neuertext);
$neuertext = nl2br($neuertext);
return $neuertext;
}