This is a very basic question. I want to remove HTML tags using PHP code. How do I do it?
You can use PHP strip_tags() function to remove html tags from your string. You can also use HTML purifier (http://htmlpurifier.org/) to do this for you.
You can use PHP strip_tags() function to remove html tags from your string. You can also use HTML purifier (http://htmlpurifier.org/) to do this for you.