×
Home About Us Products Services News Free Scripts Contact
news php scripts and software

PHP example - How to strip the PHP and HTML tags from a string?


PHP - How to strip the PHP and HTML tags from a string?

To do this, you may use the strip_tags function. For example:

<?php

$stripped_content = strip_tags($html_content);

?>

Category: PHP

 
<< Go back