vote up 3 vote down star

I am using a Richtext box control to post some data in one page. and I am saving the data to my db table with the HTML mark up Ex : This is <b >my bold </b > text

I am displaying the first 50 characters of this column in another page. Now When i am saving, if i save a Sentence (with more than 50 chars )with bold tag applied and in my other page when i trim this (for taking first 50 chars) I would lost the closing b tag (</b>) .So the bold is getting applied to rest of my contents in that page.

How can i solve this ? How can i check which all open tags are not closed ? is there anyeasy way to do this in PHP. Is there any function to remove my entire HTML tags / mark up and give me the sentence as plain text ?

flag

48% accept rate

3 Answers

vote up 3 vote down check

http://php.net/strip_tags

the strip_tags function will remove any tags you might have.

link|flag
vote up 2 vote down

Yes

$textWithoutTags = strip_tags($html);
link|flag
vote up 1 vote down

I generally use HTML::Truncate for this. Of course, being a Perl module, you won't be able to use it directly in your PHP - but the source code does show a working approach (which is to use an HTML parser).

An alternative approach, might be to truncate as you are doing at the moment, and then try to fix it using Tidy.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.