Jump to content

Solved -- BB Code help


Chevy

Recommended Posts

i think this has all the corections needed..

[code]<?php

function bbcode($txt)
{
$bbcodes = array( "|\[b\](.+)\[/b\]|is",
                      "|\[u\](.+)\[/u\]|is",
                      "|\[i\](.+)\[/i\]|is",
                      "|\[img\](.+)\[/img\]|is"
);
$replace = array( "<strong>$1</strong>",
                      "<u>$1</u>",
                      "<em>$1</em>",
                      "<img src=\"$1\">"
);

$txt = preg_replace($bbcodes, $replace, $txt);

return nl2br($txt);
}
$texter = strip_tags($_POST[message]);
$str = "$texter";
$str = bbcode($str);
echo $str;
?>[/code]

Doesn't give any errors when tested for parse errors and so on..

Regards
Liam
Link to comment
Share on other sites

[code]
<?php

function bbcode($txt)
{
$bbcodes = array( "|\[b\](.+)\[/b\]|is",
                     "|\[u\](.+)\[/u\]|is",
                     "|\[i\](.+)\[/i\]|is",
                     "|\[img\](.+)\[/img\]|is"
);
$replace = array( "<strong>$1</strong>",
                     "<u>$1</u>",
                     "<em>$1</em>",
                     "<img src='$1'>"
);

$txt = preg_replace($bbcodes, $replace, $txt);

return nl2br($txt);
}
$texter = strip_tags($_POST[message]);
$str = "$texter";
$str = bbcode($str);
echo $str;
?>
[/code]

i got 2 errors on line 13. Firstly, you need to either replace with single quotes on escape the inside double quotes on this line:
"<img src="$1">"

I replaced them. Secondly, you were missing a comma at the end of the preceding line.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.