Jump to content

BB code function not working


SirChick

Recommended Posts

I have this function that is suppose to show fonts in bold etc using html but it just shows it as like normal:

 

<b>tst</b>

^thats how it shows rather than : tst

 

 

This is my function:

 

function bbcode_format($Notes){
$Notes = htmlentities($Notes);
$simple_search = array(
                                '/\[b\](.*?)\[\/b\]/is'
                                );

        $simple_replace = array(
                                '<strong>$1</strong>'
                                );

        // Do simple BBCode's
        $Notes = preg_replace ($simple_search, $simple_replace, $Notes);

        echo $Notes;
}

Link to comment
Share on other sites

Nah didn't work this is the script:

 

function bbcode_format($Notes){
$Notes = htmlentities($Notes);
$simple_search = array(
                                '/\[b\](.*?)\[\/b\]/is'
                                );

        $words = array('[b]','[/b]');		
$code = array('<strong>','</strong>');

$Notes= str_replace($words, $code, $Notes);

        echo $Notes;
}

<textarea name="TextArea1" rows="14" cols="80"><?=$Notes?></textarea>

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.