remove html tags from string php
<?php
echo strip_tags("Hello <b>world!</b>");
remove html tags from string php
<?php
echo strip_tags("Hello <b>world!</b>");
remove html tags php
// using strip_tags and str_replace for REMOVE all html TAGS in php
$text = '<p>Hello world.</p><!-- Comment --> <a href="https://learn-tech-tips.blogspot.com">Zidane</a>';
echo strip_tags($text);
//Hello world. Zidane
$short_description = strip_tags(str_replace(" ", " ", $short_description));
echo $short_description
// Allow <p> and <a>
echo strip_tags($text, '<p><a>');
// <p>Hello world.</p><a href="https://learn-tech-tips.blogspot.com">Zidane</a>
php remove html tag
<?php
$str = "<h1>Hello WorldÆØÅ!</h1>";
# Remove all HTML tags and all characters with ASCII value > 127, from a string:
$newstr = filter_var($str, FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_HIGH);
echo $newstr;
# Result: Hello World!
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us