|
strip out certain tags
strip out certain tags from a string or page
<?php
$text='This is <b>basic bold text which we want left</b>
this is a dodgy script <script>some javascript code here</script>';
// Strip those tags
echo (strip_tags($text,'<b>'));
?>
|