Im adding bbcode to my forum and ive hit a problem.
This one does not work.
$patterns[0] = "/\[quote\]/";
$patterns[1] = "/\[\/quote\]/";
$replacements[0] = "<blockquote><b>Quote:</b><hr size=1>";
$replacements[1] = "<hr size=1></blockquote>";
$test = preg_replace(''.$patterns.'', ''.$replacements.'', ''.$replys["reply_comment"].'');
PHP Warning: Delimiter must not be alphanumeric or backslash in /var/www/htdocs/xxxxxxx/Thread.php on line 143
This one does. But i want to use the one above so i can have the array and make all the canges in one sweep. Any ideas?
$patterns = "/\[quote\]/";
$replacements = "<blockquote><b>Quote:</b><hr size=1>";
$test = preg_replace(''.$patterns.'', ''.$replacements.'', ''.$replys["reply_comment"].'');