Answers for "how to remove html tags in php from mysql"

PHP
0

php remove html tags

<?php
$text = '<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>';
echo strip_tags($text);
//Test paragraph. Other text

// Allow <p> and <a>
echo strip_tags($text, '<p><a>');
//<p>Test paragraph.</p> <a href="#fragment">Other text</a>
// as of PHP 7.4.0 the line above can be written as:
// echo strip_tags($text, ['p', 'a']);
?>
Posted by: Guest on June-12-2020
0

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!
Posted by: Guest on August-23-2021
0

mysql remove html tag

SELECT
REGEXP_REPLACE(posting_items.description, '<[^>]*>|&nbsp;', '') AS clean_description
FROM Table
Posted by: Guest on May-02-2022

Code answers related to "how to remove html tags in php from mysql"

Browse Popular Code Answers by Language