Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using an editor(ckeditor) and articles created there were saved in the database as a formatted article including the html tags.

Now, i want to retrieve that article without getting the html tags, but the articles that i must retrieve are the ones that is already formatted.

Can anyone share the idea on how to do that?

share|improve this question

2 Answers

You can use strip_tags() to remove HTML tags from a string.

share|improve this answer

You can use PHP function strip_tags() to do that, here is the link:

http://php.net/manual/en/function.strip-tags.php

strip_tags($article);

EDIT: But before you do that you may want to replace all the <br> tags with a new line character, \n by using something like this function

 function br2nl($article) 
 {
     return preg_replace('/\<br(\s*)?\/?\>/i', "\n", $article); 
 }
share|improve this answer
ok. got it. thanks! – iheartLUHAN Jun 16 '12 at 19:03
You're welcome :)! Feel free to accept it as the best answer :) – techexpert Jun 16 '12 at 19:09
ok. i have another problem . here's the link. stackoverflow.com/questions/10963926/… – iheartLUHAN Jun 22 '12 at 1:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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