HTML encode user input when storing or when displaying - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:25:31Z http://stackoverflow.com/feeds/question/223480 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/223480/html-encode-user-input-when-storing-or-when-displaying 8 HTML encode user input when storing or when displaying Mark S. Rasmussen 2008-10-21T20:58:58Z 2009-09-27T20:21:16Z <p>Simple question that keeps bugging me.</p> <p>Should I HTML encode user input right away and store the encoded contents in the database, or should I store the raw values and HTML encode when displaying?</p> <p>Storing encoded data greatly reduces the risk of a developer forgetting to encode the data when it's being displayed. However, storing the encoded data will make datamining somewhat more cumbersome and it will take up a bit more space, even though that's usually a non-issue.</p> http://stackoverflow.com/questions/223480/html-encode-user-input-when-storing-or-when-displaying/223494#223494 12 Answer by Owen for HTML encode user input when storing or when displaying Owen 2008-10-21T21:02:41Z 2008-10-21T21:02:41Z <p>i'd strongly suggest encoding information on the way out. storing raw data in the database is useful if you wish to change the way it's viewed at a certain point. the flow should be something similar to:</p> <pre><code>sanitize user input -&gt; protect against sql injection -&gt; db -&gt; encode for display </code></pre> <p>think about a situation where you might want to display the information as an RSS feed instead. having to redo any HTML specific encoding before you re-display seems a bit silly. any development should always follow the "don't trust input" meme, whether that input is from a user or from the database.</p> http://stackoverflow.com/questions/223480/html-encode-user-input-when-storing-or-when-displaying/223499#223499 1 Answer by Craig Stuntz for HTML encode user input when storing or when displaying Craig Stuntz 2008-10-21T21:03:33Z 2008-10-21T21:03:33Z <p>Keep in mind that you may need to access the database with something that doesn't understand HTML encoded text (e.g., a reporting tool). I agree that space is a non-issue, but IMHO, putting HTML encoding in the database moves knowledge of your view/front end into the lowest tier in the application, and that is a design mistake.</p> http://stackoverflow.com/questions/223480/html-encode-user-input-when-storing-or-when-displaying/223509#223509 3 Answer by Andy Lester for HTML encode user input when storing or when displaying Andy Lester 2008-10-21T21:07:21Z 2008-10-21T21:07:21Z <p>The encoding should only only only be done in the display. Without exception.</p> http://stackoverflow.com/questions/223480/html-encode-user-input-when-storing-or-when-displaying/223518#223518 3 Answer by porneL for HTML encode user input when storing or when displaying porneL 2008-10-21T21:09:02Z 2008-10-21T21:09:02Z <p><strong>Output.</strong> </p> <p>With HTML you can't simply check length of a string (<code>&amp;amp;</code> is 1 character, but <code>strlen()</code> will tell you 5), you can easily crop it (it could break entities).</p> <p>You may need to mix strings from database with strings from another source, or read and write them back. Doing this application-wide without missing any escaping and avoiding double escaping is a nightmare.</p> <p>PHP tried to do similar thing with <code>magic_quotes</code> and it turned out to be a huge failure. Don't take <code>magic_entities</code> route! :)</p> http://stackoverflow.com/questions/223480/html-encode-user-input-when-storing-or-when-displaying/1484370#1484370 0 Answer by Cb for HTML encode user input when storing or when displaying Cb 2009-09-27T20:16:15Z 2009-09-27T20:16:15Z <p>Doesn't this defeat the purpose of encoding? If a malicious sql script is entered as input, which is then passed to the db it could cause a huge problem.</p>