PHP Snippets
Name:Strip HTML Tags
Description: Strips HTML tags using PHP's strip tag function. Useful for various security issue.
Code below...
>
<?php
//Variable with HTML tag
$html_tag = "<b>bold</b>";
//Strips HTML tags using strip _tags()
$strip_html = strip_tags($html_tag);
//Displa the new result
echo $strip_html;
?>
//Variable with HTML tag
$html_tag = "<b>bold</b>";
//Strips HTML tags using strip _tags()
$strip_html = strip_tags($html_tag);
//Displa the new result
echo $strip_html;
?>