Strip all HTML tags except <b>?

Discussion in 'PHP' started by angeldimit, Jan 30, 2011.

  1. #1
    Hello!

    I need a php script, which strips all HTML tags except <b> and </b>

    Could you please help me achieve it?

    Thanks in advance!
     
    angeldimit, Jan 30, 2011 IP
  2. Andrew J

    Andrew J Peon

    Messages:
    32
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    
    <?php
    $sanitized = strip_tags($input, '<b>');
    ?>
    
    Code (markup):
     
    Andrew J, Jan 30, 2011 IP
  3. angeldimit

    angeldimit Member

    Messages:
    117
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    26
    #3
    Thank you! :)
     
    angeldimit, Feb 3, 2011 IP
  4. koula

    koula Peon

    Messages:
    23
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    For these simple matters you must looking for answers here php.net
     
    koula, Feb 6, 2011 IP