Jump to content

[SOLVED] BB Code


gtal3x

Recommended Posts

Can someone give me an example of how the BB Code works?

Basicly I have a page were users add comments... I got all the nessesery options like B I U Image Link, Smiles...

Now when the comment has been posted how can i change all those

[b][i][u]  :-)

into html code and images...

Thanks in advance!

 

Link to comment
Share on other sites

try this

<?php
function bb2html($text)
{
  $bbcode = array("<", ">",
                \\"[list]", "[*]", "[/list]", 
                \\"[img=", "]", 
                \\"[b]", "[/b]", 
                \\"[u]", "[/u]", 
                \\"[i]", "[/i]",
                \\'[color="', "[/color]",
                \\"[size=\"", "[/size]",
                \\'[url="', "[/url]",
                \\"[mail=\"", "[/mail]",
                \\"[code]", ,
                \\"[quote]", "[/quote]",
                '\\"]');
  $htmlcode = array("<", ">",
                \\"<ul>", "<li>", "</ul>", 
                \\"<img src=\"", "\">", 
                \\"<b>", "</b>", 
                \\"<u>", "</u>", 
                \\"<i>", "</i>",
                \\"<span style=\"color:", "</span>",
                \\"<span style=\"font-size:", "</span>",
                \\'<a href="', "</a>",
                \\"<a href=\"mailto:", "</a>",
                \\"<code>", "</code>",
                \\"<table width=100% bgcolor=lightgray><tr><td bgcolor=white>", "</td></tr></table>",
                \\'">');
  $newtext = str_replace($bbcode, $htmlcode, $text);
  //$newtext = nl2br($newtext);//second pass
  return $newtext;
}
?>

You can add more tags if you want later

 

Oops i need to escape it, so remove all the esacpings[/code]

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.