You are here:
» Remove Html Tags In Php
Remove html tags in php
This Comment will be submitted for moderation and will not be accessible to other users until it has been approved.
This is a very basic question. I want to remove HTML tags using PHP code. How do I do it?

1 year 40 weeks ago
Tags:
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.
Post Comment