I run a niche social network site. I would like to disallow HTML content in user posted messages; such as embedded videos etc. what option is there in php to clean this up before I insert into the db.

link|improve this question
Are you using a CMS, if so which one. – toomanyairmiles Jan 30 at 10:04
feedback

migrated from webmasters.stackexchange.com Feb 1 at 1:22

This question came from our site for pro webmasters.

2 Answers

There are three basic solutions:

  1. Strip all HTML tags from the post. In PHP you can do this using the strip_tags() function.
  2. Encode all the characters, so that if a user types <b>hello</b> it shows up as <b>hello</b>. In PHP this is the htmlspecialchars() function. (Note: in this situation you would generally store the content in the database as-is, and use htmlspecialchars wherever you output the content.)
  3. Use a HTML sanitizer such as HTML Purifier. This allows users to use certain HTML formatting such as bold/italic, but blocks malicious Javascript and any other tags you wish (i.e. <object> in your case).
link|improve this answer
Thanks. Are those either / or, or and suggestions? – JDelage Feb 7 at 19:50
1  
@JDelage Either/or, except if you use strip_tags you should also use htmlspecialchars to encode any leftover greater/less than symbols as well as quotes and ampersands. – DisgruntledGoat Feb 7 at 21:14
feedback

You could use the strip_tags() function.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown