Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
// your string (just for testing)
$string = "Hi! <font size=\"\">boo!</font><br />Look out!!<p>yo!</p>";
// allowed tags
$allowed = "<b><p><br>";
// lets show you what you had
echo $string . "<hr />";
// remove unwated tags
$string = strip_tags($string, $allowed);
// lets see what you have now :)
echo $string;
echo strip_tags($string, '<b><p><br>');